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

7 lines
160 B
C#

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