using Microsoft.AspNetCore.Http; using MTWorkHR.Core.Entities; using MTWorkHR.Core.Entities.Base; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace MTWorkHR.Application.Models { public class ContractWorkingDayDto: EntityDto { public long ContractId { get; set; } [Required] [MaxLength(50)] public string WorkingDay { get; set; } } }