No Description

LigneCommandeResponse.cs 343B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Backend.Models
  4. {
  5. public class LigneCommandeResponse
  6. {
  7. public Guid Id { get; set; }
  8. public Guid ProduitId { get; set; }
  9. public Guid CommandeId { get; set; }
  10. public int Quantite { get; set; }
  11. public decimal Prix { get; set; }
  12. }
  13. }

Powered by TurnKey Linux.