Feat: Baja Lógica de Distribuidores (Selectores Dropdown)
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 8m32s
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 8m32s
This commit is contained in:
@@ -14,5 +14,7 @@ namespace GestionIntegral.Api.Models.Distribucion
|
||||
public string? Telefono { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Localidad { get; set; }
|
||||
public bool Baja { get; set; } // Baja (bit, NOT NULL, DEFAULT 0)
|
||||
public DateTime? FechaBaja { get; set; } // FechaBaja (datetime2(0), NULL)
|
||||
}
|
||||
}
|
||||
@@ -16,6 +16,8 @@ namespace GestionIntegral.Api.Models.Distribucion
|
||||
public string? Telefono { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Localidad { get; set; }
|
||||
public bool? Baja { get; set; }
|
||||
public DateTime? FechaBaja { get; set; }
|
||||
public int Id_Usuario { get; set; }
|
||||
public DateTime FechaMod { get; set; }
|
||||
public string TipoMod { get; set; } = string.Empty;
|
||||
|
||||
Reference in New Issue
Block a user