SimpleREST.NET 0.1
A simple and minimal api framework for .net base on Express.js
Loading...
Searching...
No Matches
IStatusCode.cs
Go to the documentation of this file.
1using System;
2
3namespace SimpleRest.Api;
4
5public interface IStatusCode
6{
7 public int Code { get; }
8 public string Name { get; }
9 public string Message { get; }
10 public string Severity { get; }
11}