using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ROGOZ { internal class Status { string name; public string Name { get { return name; } set { name = value; } } public static List FillStatus() { List list = new List { new Status { Name = "запланирована" }, new Status { Name = "исполняется" }, new Status { Name = "выполнена" }, new Status { Name = "отменена" } }; return list; } } }