using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class cajas { public int idCaja { get; set; } public string? Descripcion { get; set; } public int Tipo { get; set; } public int? idPermiso { get; set; } public string? IBAN { get; set; } public DateTime? FechaBaja { get; set; } public double SaldoAlCierre { get; set; } public DateTime? FechaCierre { get; set; } public string? SufijoBancario { get; set; } public int idEmpresa { get; set; } public virtual ICollection conciliacionesbancarias { get; set; } = new List(); public virtual ICollection extractosbancarios { get; set; } = new List(); public virtual empresas idEmpresaNavigation { get; set; } = null!; public virtual permisos? idPermisoNavigation { get; set; } public virtual ICollection movimientoscaja { get; set; } = new List(); }