10 lines
164 B
C#
10 lines
164 B
C#
using System.Net;
|
|
|
|
namespace Common.Dtos.Common;
|
|
|
|
public abstract class BaseResponse
|
|
{
|
|
public bool Ok { get; set; }
|
|
public string? Error { get; set; }
|
|
}
|