21 lines
556 B
C#
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; }
|
|
|
|
}
|
|
}
|