27 lines
681 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using DataModels;
using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class TaskBindingModel : ITaskModel
{
public int Id { get; set; }
public string SHORT_DESC { get; set; } = string.Empty;
public string DESCRIPTION { get; set;} = string.Empty;
public DateTime DEADLINE { get; set; }
public int ProjectId { get; set; }
public int TagGroupId { get; set; }
public MyTaskStatus Status { get; set; } = MyTaskStatus.Неизвестен;
public Dictionary<int, IPerformerModel> TaskPerformers
{
get;
set;
} = new();
}
}