Freistellungen via API

This commit is contained in:
2024-09-26 17:23:29 +02:00
parent a4e373083f
commit 2049a3a981
6 changed files with 67 additions and 33 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.Types {
public class Freistellung {
public string Identifier { get; set; }
public string Name { get; set; }
}
}