/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package Modelo;

/**
 *
 * @author Claque
 */
public class Comuna {
    private int comu_id;
    private String comu_nombre;

    public Comuna() {
    }

    public Comuna(int comu_id, String comu_nombre) {
        this.comu_id = comu_id;
        this.comu_nombre = comu_nombre;
    }

    public int getComu_id() {
        return comu_id;
    }

    public void setComu_id(int comu_id) {
        this.comu_id = comu_id;
    }

    public String getComu_nombre() {
        return comu_nombre;
    }

    public void setComu_nombre(String comu_nombre) {
        this.comu_nombre = comu_nombre;
    }
    
    
}
