1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-21 20:27:47 +00:00
project-meteor-server/Map Server/DataObjects/QuestData.cs
2022-02-16 15:30:32 -05:00

28 lines
731 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Meteor.Map.DataObjects
{
class QuestData
{
public uint Id { get; }
public string ClassName { get; }
public string Name { get; }
public uint PrerequisiteQuest { get; }
public int MinLevel { get; }
public int MinGCRank { get; }
public QuestData(uint id, string className, string name, uint prereq, int minLv, int minGcRank)
{
Id = id;
ClassName = className;
Name = Name;
PrerequisiteQuest = prereq;
MinLevel = minLv;
MinGCRank = minGcRank;
}
}
}