NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Attachement/AttachResponseDto.cs
2026-01-20 07:44:30 +08:00

21 lines
556 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Attachement
{
public class AttachResponseDto : CommonProperties
{
public int Id { get; set; }
public string? AttachmentId { get; set; }
public string? URL { get; set; }
public string? FileName { get; set; }
public int? ExtensionId { get; set; }
public int? AttachmentTypeId { get; set; }
}
}