Keeping Order

This commit is contained in:
2024-09-07 19:48:34 +02:00
parent 4cabfe1b29
commit d91e3cbc9a
15 changed files with 100 additions and 84 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jugenddienst_Stunden.Types
{
internal class TimetableEntry
{
public List<TimeOnly>? von;
public List<TimeOnly>? bis;
public decimal summe { get; set; }
}
}