mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 12:06:14 +01:00
17 lines
357 B
C#
17 lines
357 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HomeBot.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; }
|
|||
|
}
|
|||
|
}
|