NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/AttachmentVM.cs
2026-01-20 07:44:30 +08:00

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; }
}
}