BotGenerator/Common.Models/GenerationWeightData.cs

11 lines
229 B
C#

using System.Collections.Generic;
namespace Common.Models
{
public class GenerationWeightData
{
public Dictionary<string, int> weights { get; set; }
public List<string> whitelist { get; set; }
}
}