Files
DanhengServer-OpenSource/Common/Data/Excel/ChallengeGroupExcel.cs
2024-05-26 14:35:37 +08:00

28 lines
676 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Data.Excel
{
[ResourceEntity("ChallengeGroupConfig.json,ChallengeStoryGroupConfig.json",
isMultifile: true)]
public class ChallengeGroupExcel : ExcelResource
{
public int GroupID { get; set; }
public int RewardLineGroupID { get; set; }
public int SchduleID { get; set; }
public override int GetId()
{
return GroupID;
}
public override void Loaded()
{
GameData.ChallengeGroupData[GroupID] = this;
}
}
}