BotGenerator/Common.Models/GenerationWeightData.cs

11 lines
229 B
C#
Raw Normal View History

2023-08-21 16:32:20 +01:00
using System.Collections.Generic;
namespace Common.Models
{
public class GenerationWeightData
{
public Dictionary<string, int> weights { get; set; }
public List<string> whitelist { get; set; }
}
}