mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-13 17:45:22 +01:00
16 lines
357 B
C#
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; }
|
|
}
|
|
}
|