summaryrefslogtreecommitdiff
path: root/Attributes.cs
blob: 87ec2d61d9a959b5722da7a0094e6bf04a46cd49 (plain)
1
2
3
4
5
6
7
8
9
namespace HyperBooru.ApiModels;

[AttributeUsage(AttributeTargets.Class)]
public class ExceptionStatusCodeAttribute : Attribute {
    public int StatusCode { get; set; }

    public ExceptionStatusCodeAttribute(int statusCode) =>
        StatusCode = statusCode;
}