Files
BeWoPlaner/Shared/Core/IDSpecificClassAttribute.cs

11 lines
274 B
C#
Raw Permalink Normal View History

2016-06-27 01:45:38 +02:00
using System;
namespace BS.Shared.Core
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class IDSpecificClassAttribute : Attribute
{
public string Identifier { get; set; }
public string[] Identifiers { get; set; }
}
}