You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
287 B

10 years ago
  1. using Sevomin.Models.Helpers;
  2. namespace Sevomin.Models.Enums
  3. {
  4. public enum MuSCoW
  5. {
  6. [StringValue("الزامی")]
  7. Must = 4,
  8. [StringValue("خیلی مهم")]
  9. Should = 3,
  10. [StringValue("مفید")]
  11. Could = 2
  12. }
  13. }