31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Inventory
|
|
{
|
|
public class MRSPagedDto
|
|
{
|
|
public long MRSId { get; set; }
|
|
public string MRSNo { get; set; } = string.Empty;
|
|
public long RISId { get; set; }
|
|
public string? RISNo { get; set; }
|
|
public string? ItemName { get; set; }
|
|
public string? ReturnedBy { get; set; }
|
|
public decimal QtyReturned { get; set; }
|
|
public string? Condition { get; set; }
|
|
public string? Remarks { get; set; }
|
|
public short Status { get; set; }
|
|
public string? StatusLabel { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public string? ApprovedBy { get; set; }
|
|
public DateTime? ApprovedDate { get; set; }
|
|
public int InventoryId { get; set; }
|
|
public List<MRSPagedDto> Data { get; set; } = [];
|
|
}
|
|
}
|