You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
351 B

2 years ago
  1. using Newtonsoft.Json;
  2. using System;
  3. namespace WebApp.Outlook.Models
  4. {
  5. public class Member
  6. {
  7. public String GroupId { get; set; }
  8. public String Upn { get; set; }
  9. public bool Owner { get; set; }
  10. [JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
  11. public string Id { get; set; }
  12. }
  13. }