Restructuration

This commit is contained in:
2020-11-30 00:19:37 +01:00
parent 1bcaa3c841
commit c3b67ca667
28 changed files with 1082 additions and 452 deletions

10
Model/Preferences.cs Normal file
View File

@@ -0,0 +1,10 @@
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 SmsApiKey { get; set; }
}
}