24 lines
762 B
C#
24 lines
762 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WerksverkaufScanner.Data
|
|
{
|
|
[Table("FilialienMA", Schema = "KS")]
|
|
public class Filiale
|
|
{
|
|
[Key]
|
|
public int FilialId { get; set; }
|
|
public int MandantenId { get; set; }
|
|
public string? Bezeichnung { get; set; }
|
|
public string? Level { get; set; }
|
|
public string? Straße { get; set; }
|
|
public string? PLZ { get; set; }
|
|
public string? Ort { get; set; }
|
|
public string? UstId { get; set; }
|
|
public string? StNr { get; set; }
|
|
public int WerkNr { get; set; }
|
|
public string? Telefon { get; set; }
|
|
public string? Filialleitung { get; set; }
|
|
}
|
|
}
|