Newer
Older
DungeonShooting / DungeonShooting_Godot / src / config / Role.cs
@lijincheng lijincheng on 3 Jun 2023 277 bytes 导出表
using System.Text.Json.Serialization;
using System.Collections.Generic;

namespace Config;

public class Role
{
    /// <summary>
    /// 物体唯一id <br/>
    /// 不需要添加类型前缀
    /// </summary>
    [JsonInclude]
    public string Id { get; private set; }

}