18 lines
529 B
C#
18 lines
529 B
C#
using CPRNIMS.Infrastructure.Models.Inventory;
|
|
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.Response
|
|
{
|
|
public class MRSResponse
|
|
{
|
|
[JsonPropertyName("success")] public bool Success { get; set; }
|
|
[JsonPropertyName("message")] public string? Message { get; set; }
|
|
[JsonPropertyName("data")] public MRSData? Data { get; set; }
|
|
}
|
|
}
|