Add LINQ Query

Prepare Api for Queryable Lists instead of Dictionarys
This commit is contained in:
2024-09-07 19:40:58 +02:00
parent 6c4cf48776
commit ce61d0c55d
5 changed files with 35 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jugenddienst_Stunden.Models {
public class TimeDay {
public int Day { get; set; }
public decimal Hours { get; set; }
}
}