bloxstrap/Bloxstrap/Models/Attributes/EnumNameAttribute.cs
pizzaboxer cc4c380c10
System for better management of enum names
eradicates all those redundant translations
2024-07-04 09:44:23 +04:00

15 lines
315 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bloxstrap.Models.Attributes
{
class EnumNameAttribute : Attribute
{
public string? StaticName { get; set; }
public string? FromTranslation { get; set; }
}
}