13 lines
294 B
C#
13 lines
294 B
C#
namespace Core.Blueprint.Domain.Shared
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class CollectionAttributeName : Attribute
|
|
{
|
|
public string Name { get; set; }
|
|
public CollectionAttributeName(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|