14 lines
295 B
C#
14 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Jugenddienst_Stunden.Models {
|
|
internal class TimetableEntry {
|
|
public List<TimeOnly>? von;
|
|
public List<TimeOnly>? bis;
|
|
public decimal summe { get; set; }
|
|
}
|
|
}
|