forked from chomp/BotGenerator
11 lines
229 B
C#
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; }
|
|
}
|
|
}
|