00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace Foodolini.Database 00007 { 00011 public class ShoppingListItemRow 00012 { 00016 public long ShoppingListItemRowId { get; set; } 00017 00021 public long? RecipeRowId { get; set; } 00022 00026 public long FoodDescriptionId { get; set; } 00027 00031 public long UserId { get; set; } 00032 00036 public double Quantity { get; set; } 00037 } 00038 }