mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
5 lines
131 B
C#
5 lines
131 B
C#
namespace API.Errors;
|
|
|
|
#nullable enable
|
|
public record ApiException(int Status, string? Message = null, string? Details = null);
|