27 lines
1.2 KiB
C#
27 lines
1.2 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.Models.Inventory
|
|
{
|
|
public class MRSData
|
|
{
|
|
[JsonPropertyName("mrsId")] public long MRSId { get; set; }
|
|
[JsonPropertyName("mrsNo")] public string? MRSNo { get; set; }
|
|
[JsonPropertyName("risId")] public long RISId { get; set; }
|
|
[JsonPropertyName("inventoryId")] public int InventoryId { get; set; }
|
|
[JsonPropertyName("returnedBy")] public string? ReturnedBy { get; set; }
|
|
[JsonPropertyName("qtyReturned")] public decimal QtyReturned { get; set; }
|
|
[JsonPropertyName("condition")] public string? Condition { get; set; }
|
|
[JsonPropertyName("remarks")] public string? Remarks { get; set; }
|
|
[JsonPropertyName("status")] public short Status { get; set; }
|
|
[JsonPropertyName("createdBy")] public string? CreatedBy { get; set; }
|
|
[JsonPropertyName("createdDate")] public DateTime CreatedDate { get; set; }
|
|
[JsonPropertyName("approvedBy")] public string? ApprovedBy { get; set; }
|
|
[JsonPropertyName("approvedDate")] public DateTime? ApprovedDate { get; set; }
|
|
}
|
|
}
|