Entityframework hinzugefügt
This commit is contained in:
18
Shared/Domain/Auftraggeber.cs
Normal file
18
Shared/Domain/Auftraggeber.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Shared.Domain
|
||||
{
|
||||
public class Auftraggeber : DBObject
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Strasse { get; set; }
|
||||
public string Ort { get; set; }
|
||||
public string Postleitzahl { get; set; }
|
||||
public string Ansprechpartner { get; set; }
|
||||
public string Telefonnummer { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user