Last active
August 29, 2015 14:23
-
-
Save simplement-e/644a74752da0cbf97ea8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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