mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
28 lines
676 B
C#
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;
|
|
}
|
|
}
|
|
}
|