I have an enum and values in it. I want to get list of these values with get method. I just started and I don't know how to do it.
public enum NotificationTemplateType
{
[Description("Şablonsuz")] NotTemplate = 0,
// User Şablonları - 100
[Description("Yeni Kullanıcı Şablonu")] NewUser = 100,
[Description("Şifremi Unuttum Şablonu")] ForgotPassword = 101,
// Seller Şablonları - 200
[Description("Yeni Satıcı Şablonu")] NewSeller = 200,
}
[HttpGet("GetType")]
public List<IActionResult> GetType(NotificationTemplateType notificationTemplateType)
{
return Ok(notificationTemplateType.GetAttributeOfType<DescriptionAttribute>()?.Description);
}