SUBD-Petrushin-Egor-PIbd-22/TaskTrackerContracts/BindingModels/TaskBindingModel.cs
2024-05-13 14:29:34 +04:00

28 lines
749 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TaskTrackerDataModels.Enums;
using TaskTrackerDataModels.Models;
namespace TaskTrackerContracts.BindingModels
{
public class TaskBindingModel : ITaskModel
{
public int Id { get; set; }
public int ProjectId { get; set; }
public int UserId { get; set; }
public string Title { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public MyTaskStatus Status { get; set; } = MyTaskStatus.Неизвестен;
public DateTime DateCreate { get; set; } = DateTime.Now;
public DateTime? DateImplement { get; set; }
}
}