ShoppingListItem.cs 368 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace API.DBModel
  4. {
  5. [Table("shopping_list_items")]
  6. public class ShoppingListItem
  7. {
  8. [Key]
  9. public int Id { get; set; }
  10. public string? Name { get; set; }
  11. List<ProductInShopList>? productInShopLists { get; set; }
  12. }
  13. }