Hermes/Model/Preferences.cs

28 lines
567 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 ovhSmsServiceName {
get; set;
}
public string ovhSmsApplicationName {
get; set;
}
public string ovhSmsApplicationKey {
get; set;
}
public string ovhSmsConsumerKey {
get; set;
}
2020-11-30 00:19:37 +01:00
}
}