using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oLayoutType { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private string _layout = String.Empty; public string layout { get {return this._layout;} set {this._layout = value;} } }