colegio/src/db/q3.vala

14 lines
292 B
Vala

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