using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using MTWorkHR.Core.Entities.Base; namespace MTWorkHR.Application.Models { public class ContractTaskDto : EntityDto { public long ContractId{ get; set; } //public ContractDto? Contract { get; set; } [Required] [MaxLength(250)] public string Title { get; set; } public DateTime? StartDate{ get; set; } public decimal? Amount { get; set; } public string? ScopeOfWork { get; set; } public List? TaskAttachments { get; set; } } }