colegio/src/db/region.vala

14 lines
332 B
Vala
Raw Normal View History

2019-07-16 10:40:44 -04:00
namespace Colegio {
namespace DB {
public class Region : Object {
public int id_region { get; set; default = 0; }
public string nombre_region { get; set; default = ""; }
public Region (int id_region = 0, string nombre_region = "") {
this.id_region = id_region;
this.nombre_region = nombre_region;
}
}
}
}