123456789101112131415161718192021 |
- using Microsoft.AspNetCore.Http;
- using MTWorkHR.Core.Entities.Base;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace MTWorkHR.Application.Models
- {
- public class AttachmentDto
- {
- public long AttachmentTypeId { get; set; }
- public string? AttachmentTypeName { get; set; }
- public IFormFile? FileData { get; set; }
- public string FileName { get; set; }
- public string OriginalName { get; set; }
- }
- }
|