v2 ing soft #89

Merged
fede merged 92 commits from dev into main 2025-07-28 20:20:59 -03:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit df751ead57 - Show all commits
+4
View File
@@ -424,6 +424,10 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.Id)
.HasColumnType("int(11)")
.HasColumnName("id");
entity.Property(e => e.Habilitado)
.IsRequired()
.HasDefaultValueSql("'1'")
.HasColumnName("habilitado");
entity.Property(e => e.Nombre)
.HasMaxLength(12)
.HasColumnName("nombre");
+2
View File
@@ -10,6 +10,8 @@ public partial class Grupo:IComponenteSeguridad
public string Nombre { get; set; } = null!;
public bool? Habilitado { get; set; }
[JsonIgnore]
public virtual ICollection<Grupo> IdGrupoHijos { get; set; } = new List<Grupo>();