Fix french comments

This commit is contained in:
2025-10-07 10:01:41 +02:00
parent fa353446eb
commit cfa2d59c0d
5 changed files with 2 additions and 7 deletions

View File

@@ -9,5 +9,4 @@ public class Communication
[Required] public string? Email { get; set; }
[Required] public string? Meeting { get; set; }
//REL
}

View File

@@ -14,7 +14,6 @@ public class Contact
[Required] public string? City { get; set; }
[Required] public string? Role { get; set; }
//RELATIONS DE CON LA
public int CommunicationId { get; set; }
public Communication? Communication { get; set; }
}

View File

@@ -7,7 +7,7 @@ public class Customer
[Key] public int Id { get; set; }
[Required] public string? Note { get; set; }
//Les relations
//Relations
public int CustomerTypeId { get; set; }
public CustomerType? CustomerType { get; set; }

View File

@@ -9,7 +9,7 @@ public class Show
[Required, MaxLength(120)] public string? Place { get; set; }
[MaxLength(500)] public string? Description { get; set; }
// Lien (chemin/URL/nom de fichier) vers le plan dimplémentation pyrotechnique
// Link (path/URL/file name) to the pyrotechnic implementation plan
[Required, MaxLength(500)]
public string? PyrotechnicImplementationPlan { get; set; }

View File

@@ -13,10 +13,7 @@ public class Warehouse
[Required] public int ZipCode { get; set; }
[Required] public string? City { get; set; }
public List<Material>? Materials {get; set;}
public List<Movement>? MovementsSource { get; set; }
public List<Movement>? MovementsDestination { get; set; }
}