AttachmentResponseDto.cs 509 B

1234567891011121314151617181920
  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 AttachmentResponseDto
  8. {
  9. public string? OriginalName { get; set; }
  10. public string? FileName { get; set; }
  11. public string? FilePath { get; set; }
  12. public long? FileSize { get; set; }
  13. public string? ContentType { get; set; }
  14. }
  15. }