Files
Hushian/Hushian.Application/Models/ResponseBase.cs
mmrbnjd 87d2360b32 ...
2025-07-03 16:05:44 +03:30

16 lines
388 B
C#

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>();
public List<string> Warning { get; set; }=new List<string>();
}
}