33 lines
909 B
C#
33 lines
909 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace QuestValidator.Models.Input
|
|||
|
{
|
|||
|
public class Suit
|
|||
|
{
|
|||
|
public string _id { get; set; }
|
|||
|
public string tid { get; set; }
|
|||
|
public string suiteId { get; set; }
|
|||
|
public bool isActive { get; set; }
|
|||
|
public Requirements requirements { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class Requirements
|
|||
|
{
|
|||
|
public int loyaltyLevel { get; set; }
|
|||
|
public int profileLevel { get; set; }
|
|||
|
public int standing { get; set; }
|
|||
|
public List<object> skillRequirements { get; set; }
|
|||
|
public List<string> questRequirements { get; set; }
|
|||
|
public List<ItemRequirement> itemRequirements { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class ItemRequirement
|
|||
|
{
|
|||
|
public int count { get; set; }
|
|||
|
public string _tpl { get; set; }
|
|||
|
public bool onlyFunctional { get; set; }
|
|||
|
}
|
|||
|
}
|