Finalisation de la fonction de filtrage

This commit is contained in:
2020-12-02 23:27:43 +01:00
parent b95e14a29f
commit b56f785e3d
7 changed files with 85 additions and 29 deletions

View File

@@ -2,9 +2,17 @@
namespace Hermes.Model {
public class Preferences {
public int Id { get; set; }
public string VilleCP { get; set; }
public string Ville { get; set; }
public string SmsApiKey { get; set; }
public int Id {
get; set;
}
public string VilleCP {
get; set;
}
public string Ville {
get; set;
}
public string SmsApiKey {
get; set;
}
}
}