Entwicklung_BLAZOR/WerksverkaufScanner/WerksverkaufScanner/Data/Filiale.cs
Christopher Meinhold 1729550f95 WerksverkaufScanner:
-Inventur vorbereiten entfernt
-Einstellungsseite ergänzt
-Filial-Id anhand IP laden
2025-12-03 14:11:03 +01:00

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; }
}
}