supervisor-simulator/scripts/Models/PaperDefinitions.cs
2026-01-11 23:57:24 +08:00

17 lines
555 B
C#

namespace Models;
/// <summary>
/// 论文卡牌定义
/// 设计说明:
/// 1) 论文作为“消耗品资源”,用于申请纵向基金。
/// 2) 论文等级只是一种枚举,真正的效果由系统层决定。
/// 注意事项:
/// - 若需要“引用率/影响因子”,可在此扩展字段。
/// 未来扩展:
/// - 可加入“论文主题标签”,影响基金/任务匹配度。
/// </summary>
public sealed class PaperDefinition
{
public DefinitionHeader Header { get; set; } = new();
public PaperRank Rank { get; set; }
}