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