NonInventPurchasingSystem/CPRNIMS.Infrastructure/Models/Common/ResponseObject.cs
2026-01-26 14:21:31 +08:00

24 lines
702 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Models.Common
{
public class ResponseObject : CommonProperties
{
public bool success;
public object? data { get; set; }
public string statusResponse { get; set; } = string.Empty;
public string NewUserId { get; set; } = string.Empty;
public string? message { get; set; }
public string? token { get; set; }
public long itemCode { get; set; } = 0;
public byte messCode { get; set; }
public bool IsValid { get; set; }
}
}