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 BarCodeRow 00013 { 00017 public long BarCodeRowId { get; set; } 00018 00022 public string Identifier { get; set; } 00023 00027 public long FoodDescriptionId { get; set; } 00028 00032 public int Type { get; set; } 00033 00037 public string ProductName { get; set; } 00038 00042 public double? Quantity { get; set; } 00043 } 00044 }