32 lines
659 B
C#
32 lines
659 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class caser__autologin
|
|
{
|
|
public uint id { get; set; }
|
|
|
|
public string? claveagencia { get; set; }
|
|
|
|
public string? subagencia { get; set; }
|
|
|
|
public string csb { get; set; } = null!;
|
|
|
|
public string? distribuidor { get; set; }
|
|
|
|
public string? puntodeventa { get; set; }
|
|
|
|
public string? produccionenvigor { get; set; }
|
|
|
|
public string? oficina { get; set; }
|
|
|
|
public string? terminal { get; set; }
|
|
|
|
public string? nivel { get; set; }
|
|
|
|
public bool oculto { get; set; }
|
|
}
|