...
This commit is contained in:
14
Hushian.Application/Models/ResponseBase.cs
Normal file
14
Hushian.Application/Models/ResponseBase.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Hushian.Application.Models
|
||||
{
|
||||
public class ResponseBase<T>
|
||||
{
|
||||
public T? Value { get; set; }
|
||||
public bool Success { get; set; }=false;
|
||||
public List<string> Errors { get; set; }=new List<string>();
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user