16 lines
526 B
C#
16 lines
526 B
C#
|
namespace QuestValidator.Models.Other
|
|||
|
{
|
|||
|
public class AssortUnlocks
|
|||
|
{
|
|||
|
public string QuestId { get; set; }
|
|||
|
public string AssortUnlockId { get; set; }
|
|||
|
public string QuestRewardId { get; set; }
|
|||
|
public string TraderId { get; set; }
|
|||
|
public string ItemUnlockedId { get; set; }
|
|||
|
public string ItemUnlockedTemplateId { get; set; }
|
|||
|
public Trader TraderType { get; set; }
|
|||
|
public int LoyaltyLevel { get; set; }
|
|||
|
public string Criteria { get; set; }
|
|||
|
}
|
|||
|
}
|