ProjectDto.cs 398 B

12345678910111213141516
  1. using Microsoft.AspNetCore.Http;
  2. using MTWorkHR.Core.Entities.Base;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace MTWorkHR.Application.Models
  6. {
  7. public class ProjectDto:EntityDto
  8. {
  9. public string? NameAr { get; set; }
  10. public string? NameEn { get; set; }
  11. public string? CreateUser { get; set; }
  12. }
  13. }