using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oComposite { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _canvasId = 0; public int canvasId { get {return this._canvasId;} set {this._canvasId = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _composite = String.Empty; public string composite { get {return this._composite;} set {this._composite = value;} } }