Files
BeWoPlaner/Shared/Core/IDSpecificClassAttribute.cs
2016-06-27 01:45:38 +02:00

11 lines
274 B
C#

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; }
}
}