using Sevomin.Models.Helpers; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sevomin.Models.Enums { public enum MuSCoW { [StringValue("الزامی")] Must = 4, [StringValue("خیلی مهم")] Should = 3, [StringValue("مفید")] Could = 2 } }