18 lines
469 B
C#
18 lines
469 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 CreateMRSRequest
|
|
{
|
|
public long RISId { get; set; }
|
|
public decimal QtyReturned { get; set; }
|
|
public string ReturnedBy { get; set; } = string.Empty;
|
|
public string? Condition { get; set; }
|
|
public string? Remarks { get; set; }
|
|
}
|
|
}
|