//------------------------------------------------------------------------------
//
// Ce code a été généré à partir d'un modèle.
//
// Des modifications manuelles apportées à ce fichier peuvent conduire à un comportement inattendu de votre application.
// Les modifications manuelles apportées à ce fichier sont remplacées si le code est régénéré.
//
//------------------------------------------------------------------------------
namespace CD67.FicheCollege.Entity
{
using System;
using System.Collections.Generic;
public partial class commune
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public commune()
{
this.rues = new HashSet();
}
public int id { get; set; }
public string nom { get; set; }
public string code { get; set; }
public string insee { get; set; }
public Nullable superficie { get; set; }
public string maire { get; set; }
public string adresse { get; set; }
public string tel { get; set; }
public string fax { get; set; }
public string email { get; set; }
public string urbanisationemail { get; set; }
public string urbanisationinterlocuteur { get; set; }
public string urbanisationtel { get; set; }
public Nullable optcommunecollege { get; set; }
public string rpi { get; set; }
public string web { get; set; }
public Nullable idcanton { get; set; }
public virtual canton canton { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection rues { get; set; }
}
}