so-un-bot/legacy/Bot/Modules/OttoLinux/OttoScore.cs

16 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoUnBot.Modules.OttoLinux
{
public class OttoScore
{
public int Score { get; set; }
public int Correct { get; set; }
public int Wrong { get; set; }
public int Blank { get; set; }
}
}