11 lines
250 B
C#
11 lines
250 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; }
|
|
}
|
|
}
|