16 lines
322 B
C#
16 lines
322 B
C#
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; }
|
|
}
|
|
}
|