11 lines
274 B
C#
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; }
|
|
}
|
|
} |