patbef-Simulator/Simulator/Models/Patient.cs

19 lines
507 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace Simulator.Models
{
public class Patient
{
public int PatientId { get; set; }
public string Name { get; set; }
public string PLZ { get; set; }
public string Gebdatum { get; set; }
public string UDID { get; set; }
public string Created { get; set; }
}
}