BusinessTripExpensesDto.cs 997 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using MTWorkHR.Application.Models;
  9. using MTWorkHR.Core.Entities;
  10. using MTWorkHR.Core.Entities.Base;
  11. using MTWorkHR.Core.Global;
  12. namespace MTWorkHR.Application.Models
  13. {
  14. public class BusinessTripExpensesDto : EntityDto
  15. {
  16. public decimal? TicketCost{ get; set; }
  17. public decimal? TransportationCost { get; set; }
  18. public decimal? AccommodationCost { get; set; }
  19. public decimal? OtherCost { get; set; }
  20. public decimal? TotalCost { get; set; }
  21. //public OrderAttachmentDto? TicketAttachment { get; set; }
  22. //public OrderAttachmentDto? TransportationAttachment { get; set; }
  23. //public OrderAttachmentDto? AccommodationAttachment { get; set; }
  24. public List<OrderAttachmentDto>? Attachments { get; set; }
  25. }
  26. }