Files
annotations/Azaion.Common/DTO/BusinessExceptionDto.cs
T
2025-06-13 23:06:48 +03:00

7 lines
162 B
C#

namespace Azaion.Common.DTO;
public class BusinessExceptionDto
{
public int ErrorCode { get; set; }
public string Message { get; set; } = string.Empty;
}