mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
337 B
C#
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; }
|
|
}
|
|
}
|