colegio/src/db/q4.vala

14 lines
288 B
Vala
Raw Normal View History

2019-07-05 09:45:10 -04:00
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;
}
}
}
}