profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
RestApiErrorResponse.cs 177 bytes
1 using System.Net;
2
3 namespace App.DTO.v1;
4
5 public class RestApiErrorResponse
6 {
7 public HttpStatusCode Status { get; set; }
8 public string Error { get; set; } = default!;
9 }
10