geekbot/Geekbot.net/Lib/DiceParser/DiceInput.cs

11 lines
316 B
C#
Raw Normal View History

2020-06-21 03:33:05 +02:00
using System.Collections.Generic;
namespace Geekbot.net.Lib.DiceParser
{
public class DiceInput
{
public List<SingleDie> Dice { get; set; } = new List<SingleDie>();
public DiceInputOptions Options { get; set; } = new DiceInputOptions();
public int SkillModifier { get; set; }
}
}