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

19 lines
515 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 CreateRISRequest
{
public int InventoryId { get; set; }
public long PRDetailId { get; set; }
public string IssuedTo { get; set; } = string.Empty;
public byte DisciplineId { get; set; }
public decimal QtyIssued { get; set; }
public string? Remarks { get; set; }
}
}