Alquileres #47

Merged
fede merged 24 commits from Alquileres into dev 2025-01-24 04:14:19 -03:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit f9470bb005 - Show all commits
+1 -1
View File
@@ -271,7 +271,7 @@ public partial class AlquilaFacilContext : DbContext
.HasPrecision(12)
.HasColumnName("costo");
entity.Property(e => e.Descripcion)
.HasMaxLength(40)
.HasMaxLength(100)
.HasColumnName("descripcion");
entity.Property(e => e.Idcontrato)
.HasColumnType("bigint(20)")
+1 -1
View File
@@ -8,7 +8,7 @@ public partial class Permiso
{
public int Id { get; set; }
public string? Descripcion { get; set; }
public string Descripcion { get; set; } = null!;
[JsonIgnore]
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();