00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 using System.IO; 00006 00007 namespace Foodolini.Database 00008 { 00012 public class RecipeRow 00013 { 00017 public long RecipeRowId { get; set; } 00018 00019 public string Title { get; set; } 00020 00024 public double? AverageRating { get; set; } 00025 00029 public int Difficulty { get; set; } 00030 00034 public long? PreparationTime { get; set; } 00035 00039 public long? PictureId { get; set; } 00040 00044 public double Servings { get; set; } 00045 } 00046 }