24 lines
802 B
C#
24 lines
802 B
C#
using System.ComponentModel;
|
|
|
|
namespace BD_empresa.Data
|
|
{
|
|
public class UnidadeSmart : INotifyPropertyChanged
|
|
{
|
|
public long Cod_Smart_cliente { get; set; }
|
|
public long Cod_Smart_unidade { get; set; }
|
|
public string? Gestao { get; set; }
|
|
public string? Cliente { get; set; }
|
|
public string? Unidade { get; set; }
|
|
public string? CNPJ_CPF { get; set; }
|
|
public string? Codigo_Instalacao { get; set; }
|
|
public string? Razao_Social { get; set; }
|
|
public string? Caminho_NFs { get; set; }
|
|
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
protected void OnPropertyChanged(string propertyName)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|