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

namespace MTWorkHR.Application.Models
{
    public class OrderAttachmentDto : EntityDto
    {
        //public long OrderRequestId { get; set; }

        public string? FileName { get; set; }
        
        public string? CreateDateStr { get; set; }
        public string? OriginalName { get; set; }
        public string? FilePath { get; set; }
        public string? ContentType { get; set; }

    }
}