Klassen erweitert

This commit is contained in:
Husky
2020-02-21 11:37:04 +01:00
parent 842c42be58
commit f37a7c5dd4
13 changed files with 574 additions and 32 deletions

View File

@@ -0,0 +1,12 @@
using KanSan.Base.Interfaces;
using System;
namespace KanSan.Base.Models
{
public class Fahrzeug : IDatabaseEntry
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public string Kennzeichen { get; set; }
}
}