NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Inventory/Request/ApproveRISRequest.cs
2026-06-15 16:41:50 +08:00

14 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Inventory.Request
{
public class ApproveRISRequest
{
public long RISId { get; set; }
}
}