23 lines
659 B
C#
23 lines
659 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 long itemCode { get; set; } = 0;
|
|
public byte messCode { get; set; }
|
|
public bool IsValid { get; set; }
|
|
}
|
|
}
|