Mineplex2018-withcommit/Website/LOC.Core/Model/Server/PvpServer/CustomBuild.cs

76 lines
2.3 KiB
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Model.Server.PvpServer
{
public class CustomBuild
{
public int CustomBuildId { get; set; }
public Account.Account Account { get; set; }
public string Name { get; set; }
public bool Active { get; set; }
public int CustomBuildNumber { get; set; }
public string PvpClass { get; set; }
2013-08-27 17:14:08 +02:00
public string SwordSkill { get; set; }
public int SwordSkillLevel { get; set; }
2013-08-27 17:14:08 +02:00
public string AxeSkill { get; set; }
public int AxeSkillLevel { get; set; }
2013-08-27 17:14:08 +02:00
public string BowSkill { get; set; }
public int BowSkillLevel { get; set; }
2013-08-27 17:14:08 +02:00
public string ClassPassiveASkill { get; set; }
public int ClassPassiveASkillLevel { get; set; }
2013-08-27 17:14:08 +02:00
public string ClassPassiveBSkill { get; set; }
public int ClassPassiveBSkillLevel { get; set; }
public string GlobalPassiveSkill { get; set; }
public int GlobalPassiveSkillLevel { get; set; }
2013-08-27 17:14:08 +02:00
2014-04-20 05:53:55 +02:00
public int SkillTokens { get; set; }
public int ItemTokens { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot1Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot1Material { get; set; }
public int Slot1Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot2Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot2Material { get; set; }
public int Slot2Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot3Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot3Material { get; set; }
public int Slot3Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot4Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot4Material { get; set; }
public int Slot4Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot5Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot5Material { get; set; }
public int Slot5Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot6Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot6Material { get; set; }
public int Slot6Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot7Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot7Material { get; set; }
public int Slot7Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot8Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot8Material { get; set; }
public int Slot8Amount { get; set; }
2014-04-20 07:54:52 +02:00
public string Slot9Name { get; set; }
2013-08-27 17:14:08 +02:00
public string Slot9Material { get; set; }
public int Slot9Amount { get; set; }
}
}