Created
August 25, 2019 03:10
-
-
Save simplement-e/a78cd44f47fc4474e6ffcdb27bec1bbf to your computer and use it in GitHub Desktop.
Objets de données
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
| enum TypeAnnulationCommandeInterne | |
| { | |
| ParRjs, // =0 | |
| ParClient, // =1 | |
| } | |
| class AnnulationCommandeInterneEventData | |
| { | |
| Guid CinGuid { get; set; } | |
| TypeAnnulationCommandeInterne TypeAnnulation { get; set; } | |
| string CodeRaisonAnnulation { get; set; } | |
| Guid? Uxid { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment