using Microsoft.AspNetCore.Http;
using MTWorkHR.Core.Entities.Base;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace MTWorkHR.Application.Models
{
    public class AttachmentResponseDto 
    {
        public string? FileName { get; set; }

        public string? FilePath { get; set; }

    }
}