using System; using System.Runtime.CompilerServices; using Db4objects.Db4o; namespace Db4OSeries { public class SimpleObject { public SimpleObject(string name, int amount, int price) { Name = name; Amount = amount; Price = price; } public string Name { get; set; } public int Amount { get; set; } public int Price { get; set; } } }