2020-11-30 00:19:37 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Hermes.Model {
|
|
|
|
|
public class Preferences {
|
2020-12-02 23:27:43 +01:00
|
|
|
|
public int Id {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string VilleCP {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string Ville {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2020-12-28 00:24:12 +01:00
|
|
|
|
public string ovhSmsServiceName {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2020-12-28 18:56:26 +01:00
|
|
|
|
public string ovhSmsApplicationKey {
|
2020-12-28 00:24:12 +01:00
|
|
|
|
get; set;
|
|
|
|
|
}
|
2020-12-28 18:56:26 +01:00
|
|
|
|
public string ovhSmsApplicationSecret {
|
2020-12-28 00:24:12 +01:00
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string ovhSmsConsumerKey {
|
2020-12-02 23:27:43 +01:00
|
|
|
|
get; set;
|
|
|
|
|
}
|
2020-12-29 22:56:32 +01:00
|
|
|
|
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;
|
|
|
|
|
}
|
2020-11-30 00:19:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|