23 lines
306 B
C#
23 lines
306 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace DataModels
|
||
{
|
||
public enum MyTaskStatus
|
||
{
|
||
Неизвестен = -1,
|
||
|
||
Новый = 0,
|
||
|
||
Выполняется = 1,
|
||
|
||
Готово = 2,
|
||
|
||
Просрочено = 3
|
||
|
||
}
|
||
}
|