NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Items/AttachmentRequest.cs
2026-02-12 10:41:44 +08:00

16 lines
349 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Items
{
public class AttachmentRequest
{
public long PRId { get; set; }
public string? FileName { get; set; }
public string? OrigFileName { get; set; }
}
}