AttachmentResponseDto.cs 357 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 AttachmentResponseDto
  8. {
  9. public string? FileName { get; set; }
  10. public string? FilePath { get; set; }
  11. }
  12. }