colegio/src/db/q4.vala

14 lines
288 B
Vala

namespace Colegio {
namespace DB {
public class Q4 : Object {
public string curso { get; set; default = ""; }
public int cantidad { get; set; default = 0; }
public Q4 (string curso = "", int cantidad = 0) {
this.curso = curso;
this.cantidad = cantidad;
}
}
}
}