20 lines
536 B
C#
20 lines
536 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.ViewModel
|
|
{
|
|
public class AttachmentVM : CommonProperties
|
|
{
|
|
public int Id { get; set; }
|
|
public string? AttachmentId { get; set; }
|
|
public string? URL { get; set; }
|
|
public string? FileName { get; set; }
|
|
public int? ExtesionId { get; set; }
|
|
public string? Result { get; set; }
|
|
}
|
|
}
|