flower-story/Server/Controller/ApiController.structs.cs
2023-07-13 12:10:30 +08:00

17 lines
386 B
C#

namespace Blahblah.FlowerStory.Server.Controller;
/// <summary>
/// 字典、定义
/// </summary>
public record DefinitionResult
{
/// <summary>
/// 花草分类
/// </summary>
public required Dictionary<int, NamedItem> Categories { get; init; }
/// <summary>
/// 事件
/// </summary>
public required Dictionary<int, Event> Events { get; init; }
}