Add project files.

This commit is contained in:
2020-12-09 22:10:02 +01:00
parent e83e2b7f61
commit 029cc5d368
17 changed files with 1708 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsFormsCore.Domain
{
public class Connect
{
public int PrimeNr { get; set; }
public int ActLottoNr { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsFormsCore.Domain
{
public class LottoNum
{
public int ChoseNumber { get; set; }
public bool Valid { get; set; }
}
}