This commit is contained in:
mmrbnjd
2024-05-05 18:15:37 +03:30
parent 67adbee29a
commit df6c31eac2
13 changed files with 451 additions and 163 deletions

View File

@@ -0,0 +1,9 @@
namespace Shared.DTOs
{
[AttributeUsage(AttributeTargets.Property)]
public class ShowNameAttribute : Attribute
{
public string Name = "";
}
}