Cleanup, comments

This commit is contained in:
2024-10-18 16:23:40 +02:00
parent 91377b583b
commit e788084592
5 changed files with 16 additions and 36 deletions

View File

@@ -1,13 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jugenddienst_Stunden.Types;
namespace Jugenddienst_Stunden.Types;
public class TimeDay
{
public int Day { get; set; }
public decimal Hours { get; set; }
}
/// <summary>
/// Summe der geleisteten Stunden.
/// </summary>
public struct TimeDay {
public int Day { get; set; }
public decimal Hours { get; set; }
}