00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 00007 namespace Foodolini.Database 00008 { 00012 public class FoodDescription 00013 { 00017 public long FoodDescriptionId { get; set; } 00018 00022 public long? FoodGroupId { get; set; } 00023 00027 public string LongDescription { get; set; } 00028 00032 public string ShortDescription { get; set; } 00033 00037 public string CommercialName { get; set; } 00038 00042 public string Manufacturer { get; set; } 00043 00047 public long? ShelfLife { get; set; } 00048 00052 public long? ExpirationAfterOpening { get; set; } 00053 00054 public double? Protein { get; set; } 00055 public double? Carbohydrates { get; set; } 00056 public double? Fat { get; set; } 00057 00058 } 00059 }