2025-06-28 16:43:25 +03:30
|
|
|
|
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>();
|
2025-07-03 16:05:44 +03:30
|
|
|
|
public List<string> Warning { get; set; }=new List<string>();
|
2025-06-28 16:43:25 +03:30
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|