9 lines
237 B
C#
9 lines
237 B
C#
namespace Marco.Pms.Model.Utilities
|
|
{
|
|
public class ServiceResponse
|
|
{
|
|
public object? Notification { get; set; }
|
|
public ApiResponse<object> Response { get; set; } = ApiResponse<object>.ErrorResponse("");
|
|
}
|
|
}
|