Hermes/Model/Preferences.cs

94 lines
2.2 KiB
C#

using System;
namespace Hermes.Model {
public class Preferences {
public int Id {
get; set;
}
public string VilleCP {
get; set;
}
public string Ville {
get; set;
}
public string ovhSmsServiceName {
get; set;
}
public string ovhSmsApplicationKey {
get; set;
}
public string ovhSmsApplicationSecret {
get; set;
}
public string ovhSmsConsumerKey {
get; set;
}
public bool civiliteViewEnabled {
get; set;
}
public bool nomViewEnabled {
get; set;
}
public bool nomNaissanceViewEnabled {
get; set;
}
public bool prenomViewEnabled {
get; set;
}
public bool ageViewEnabled {
get; set;
}
public bool professionViewEnabled {
get; set;
}
public bool typeResidenceViewEnabled {
get; set;
}
public bool mailViewEnabled {
get; set;
}
public bool telViewEnabled {
get; set;
}
public bool telPortViewEnabled {
get; set;
}
public bool quartierViewEnabled {
get; set;
}
public bool adresseViewEnabled {
get; set;
}
public bool adresseBatimentViewEnabled {
get; set;
}
public bool adresseNumeroBatimentViewEnabled {
get; set;
}
public bool adresseExtViewEnabled {
get; set;
}
public bool adresseExtCPViewEnabled {
get; set;
}
public bool adresseExtVilleViewEnabled {
get; set;
}
public bool dateCreationViewEnabled {
get; set;
}
public bool dateModificationViewEnabled {
get; set;
}
public int windowHeight {
get; set;
}
public int windowWidth {
get; set;
}
public bool windowMaximized {
get; set;
}
}
}