Skip to content

Instantly share code, notes, and snippets.

@simplement-e
Created August 3, 2018 12:31
Show Gist options
  • Select an option

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

Select an option

Save simplement-e/95dd947c1951e419b10b7381debebb2d to your computer and use it in GitHub Desktop.
Objets de données
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