Project creation, basics

This commit is contained in:
2023-03-12 12:32:26 +01:00
Unverified
commit 95364c8a31
68 changed files with 3517 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TimetableDesigner.Core
{
public struct TimetableDay
{
#region PROPERTIES
public string Name { get; set; }
#endregion
#region CONSTRUCTORS
public TimetableDay(string name)
{
Name = name;
}
#endregion
}
}