Refactor repo structure

This commit is contained in:
Marco Realacci 2024-01-19 03:29:39 +01:00
parent 36ac339086
commit 8fc89fbc03
1732 changed files with 3812 additions and 67 deletions

View file

@ -0,0 +1,16 @@
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; }
}
}