using System; using System.Collections.Generic; using System.Text; namespace WmData { /// /// Test class used to test data engine. It contains frequently used properties. /// public class TestObject { protected int id; protected string name; protected double amount; protected DateTime moment; protected bool enabled; public TestObject() { } public int Id { get { return id; } set { id = value; } } public string Name { get { return name; } set { name = value; } } public double Amount { get { return amount; } set { amount = value; } } public DateTime Moment { get { return moment; } set { moment = value; } } public bool Enabled { get { return enabled; } set { enabled = value; } } } }