Keine Beschreibung

Produit.cs 445B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Backend.Domain.Entities
  4. {
  5. public class Produit
  6. {
  7. public Guid Id { get; set; }
  8. public string Libelle { get; set; }
  9. public string Reference { get; set; }
  10. public DateTime DateEnregistrement { get; set; }
  11. public ICollection<Propriete> Proprietes { get; set; }
  12. public ICollection<LigneCommande> LigneCommandes { get; set; }
  13. }
  14. }

Powered by TurnKey Linux.