colegio/src/db/q1.vala

20 lines
600 B
Vala
Raw Normal View History

2019-05-26 14:06:35 -04:00
namespace Colegio {
namespace DB {
public class Q1 : Object {
public string alumno { get; set; default = ""; }
public string apoderado { get; set; default = ""; }
public string curso { get; set; default = ""; }
public string jefe { get; set; default = ""; }
2019-07-14 12:22:00 -04:00
public string ?asistente { get; set; default = ""; }
2019-05-26 14:06:35 -04:00
2019-07-14 12:22:00 -04:00
public Q1 (string alumno = "", string apoderado = "", string curso = "", string jefe = "", string ?asistente = "") {
2019-05-26 14:06:35 -04:00
this.alumno = alumno;
this.apoderado = apoderado;
this.curso = curso;
this.jefe = jefe;
this.asistente = asistente;
}
}
}
}