using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { [Serializable] public class oAge { private int _years = 0; public int years { get { return this._years; } set { this._years = value; } } private int _months = 0; public int months { get { return this._months; } set { this._months = value; } } private int _days = 0; public int days { get { return this._days; } set { this._days = value; } } } }