Files
nadekobot/NadekoBot.Core/Modules/Utility/Common/ConvertUnit.cs
2021-09-06 21:29:22 +02:00

13 lines
337 B
C#

using System.Diagnostics;
namespace NadekoBot.Modules.Utility.Common
{
[DebuggerDisplay("Type: {UnitType} Trigger: {Triggers[0]} Mod: {Modifier}")]
public class ConvertUnit
{
public string[] Triggers { get; set; }
public string UnitType { get; set; }
public decimal Modifier { get; set; }
}
}