No repository description.
using System.Net;
namespace SplitApp.Modules.Users.Api.Dto.v1;
public class RestApiErrorResponse
{
public HttpStatusCode Status { get; set; }
public string Error { get; set; } = default!;
}