Api/Netina.Common/Models/Entity/PageClassDisplay.cs

16 lines
349 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Common.Models.Entity
2023-12-16 20:25:12 +03:30
{
[AttributeUsage(AttributeTargets.Class)]
2024-08-09 21:55:16 +03:30
public class PageClassDisplay(string name, string description) : Attribute
2023-12-16 20:25:12 +03:30
{
public string GetName()
{
2024-08-09 21:55:16 +03:30
return name;
2023-12-16 20:25:12 +03:30
}
public string GetDescription()
{
2024-08-09 21:55:16 +03:30
return description;
2023-12-16 20:25:12 +03:30
}
}
}