|
namespace Netina.Common.Models.Entity
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PageClassDisplay(string name, string description) : Attribute
|
|
{
|
|
public string GetName()
|
|
{
|
|
return name;
|
|
}
|
|
|
|
public string GetDescription()
|
|
{
|
|
return description;
|
|
}
|
|
}
|
|
} |