Skip to content

Instantly share code, notes, and snippets.

@simplement-e
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save simplement-e/644a74752da0cbf97ea8 to your computer and use it in GitHub Desktop.

Select an option

Save simplement-e/644a74752da0cbf97ea8 to your computer and use it in GitHub Desktop.
class MagasinData
{
string Nom { get; set; }
Guid Guid { get; set; }
string Code { get; set; }
string MessageAccueil { get; set; }
string Responsable { get; set; }
string Telephone { get; set; }
string MessageHoraires { get; set; }
string Email { get; set; }
string UrlPersonnalisee { get; set; }
decimal? Longitude { get; set; }
decimal? Latitude { get; set; }
string Adresse { get; set; }
string CodePostal { get; set; }
string CodePays { get; set; }
string Ville { get; set; }
List<MagasinHoraireData> Horaires { get; set; }
}
class MagasinHoraireData
{
string Jour { get; set; }
string Horaires { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment