patbef-Simulator/Simulator/Models/Args.cs

13 lines
256 B
C#
Raw Normal View History

2024-01-29 16:28:09 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Simulator.Models
{
public class Args
{
public List<Befund> Befunde { get; set; }
public List<Patient> Patienten { get; set; }
}
}