forked from adam/discord-bot-shtik
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
24 lines
675 B
C#
24 lines
675 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace vassago.Conversion
|
|
{
|
|
public class ConversionConfig
|
|
{
|
|
public class KnownUnit
|
|
{
|
|
public string Canonical { get; set; }
|
|
public IEnumerable<string> Aliases { get; set; }
|
|
}
|
|
public class FormulaicPair
|
|
{
|
|
public string item1 { get; set; }
|
|
public string item2 { get; set; }
|
|
public string formulaforward {get; set; }
|
|
public string formulabackward {get; set; }
|
|
}
|
|
public IEnumerable<KnownUnit> Units { get; set; }
|
|
public IEnumerable<FormulaicPair> FormulaicPairs { get; set; }
|
|
}
|
|
}
|