namespace Colegio { namespace DB { public class Q2 : Object { public string profesor { get; set; default = ""; } public Q2 (string profesor = "") { this.profesor = profesor; } } } }