Files
Hushian/Presentation/HushianWebApp/Data/Models/ResponseBase.cs
mmrbnjd ff342a53c0 ...
2025-07-11 20:37:28 +03:30

15 lines
305 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Common.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>();
}
}