Hermes/Model/Preferences.cs

19 lines
330 B
C#
Raw Normal View History

2020-11-30 00:19:37 +01:00
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;
}
2020-11-30 00:19:37 +01:00
}
}