19 lines
330 B
C#
19 lines
330 B
C#
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;
|
|
}
|
|
}
|
|
}
|