using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { [Serializable] public class oSMS { private string _Number = String.Empty; private string _Body = String.Empty; public String Number { get { return this._Number; } set { this._Number = value; } } public String Body { get { return this._Body; } set { this._Body = value; } } } }