15 lines
324 B
C#
15 lines
324 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 CancelMRSRequest
|
|
{
|
|
public long MRSId { get; set; }
|
|
public string Reason { get; set; } = string.Empty;
|
|
}
|
|
}
|