mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
27 lines
613 B
C#
27 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel
|
|
{
|
|
[ResourceEntity("QuestData.json")]
|
|
public class QuestDataExcel : ExcelResource
|
|
{
|
|
public int QuestID { get; set; }
|
|
public int QuestType { get; set; }
|
|
public HashName QuestTitle { get; set; } = new();
|
|
|
|
public override int GetId()
|
|
{
|
|
return QuestID;
|
|
}
|
|
|
|
public override void AfterAllDone()
|
|
{
|
|
GameData.QuestDataData.Add(QuestID, this);
|
|
}
|
|
}
|
|
}
|