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

17 lines
357 B
C#
Raw Normal View History

2024-01-19 03:29:39 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-01-19 19:06:53 +01:00
namespace SoUnBot.Modules.OttoLinux
2024-01-19 03:29:39 +01:00
{
public class OttoScore
{
public int Score { get; set; }
public int Correct { get; set; }
public int Wrong { get; set; }
public int Blank { get; set; }
}
}