mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 14:04:41 +02:00
Capitalized the DataObject class.
This commit is contained in:
parent
9097e557ed
commit
aae051d73f
53 changed files with 99 additions and 62 deletions
28
Map Server/DataObjects/QuestData.cs
Normal file
28
Map Server/DataObjects/QuestData.cs
Normal file
|
@ -0,0 +1,28 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue