10 lines
170 B
C#
10 lines
170 B
C#
namespace Shared.DTOs
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class ShowNameAttribute : Attribute
|
|
{
|
|
public string Name = "";
|
|
}
|
|
}
|