Created
August 3, 2018 12:31
-
-
Save simplement-e/95dd947c1951e419b10b7381debebb2d 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
| class Message | |
| { | |
| Guid Guid { get; set; } | |
| Guid? Uxid { get; set; } | |
| Guid? GroupeGuid { get; set; } | |
| string Sujet { get; set; } | |
| string Details { get; set; } | |
| bool EstTraite { get; set; } | |
| bool EstImportant { get; set; } | |
| string Url { get; set; } | |
| DateTimeOffset Date { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment