mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 23:44:45 +01:00
20 lines
441 B
C#
20 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace nksrv.StaticInfo
|
|
{
|
|
public class MainQuestCompletionData
|
|
{
|
|
public int id;
|
|
public int group_id;
|
|
public string category = "";
|
|
public int condition_id;
|
|
public int next_main_quest_id = 0;
|
|
public int reward_id = 0;
|
|
public int target_chapter_id;
|
|
}
|
|
}
|