17 lines
407 B
C#
17 lines
407 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace EonaCat.DoxaApi.Models
|
|
{
|
|
public sealed class ApiInfo
|
|
{
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; set; } = "API Documentation";
|
|
|
|
[JsonPropertyName("description")]
|
|
public string? Description { get; set; }
|
|
|
|
[JsonPropertyName("version")]
|
|
public string Version { get; set; } = "v1";
|
|
}
|
|
}
|