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.

18 lines
569 B

2 years ago
  1. using Newtonsoft.Json;
  2. using System;
  3. namespace WebApp.Outlook.Models
  4. {
  5. public class Group
  6. {
  7. public String DisplayName { get; set; }
  8. public String MailNickname { get; set; }
  9. public String Description { get; set; }
  10. public String[] GroupTypes { get; set; }
  11. public Boolean MailEnabled { get; set; }
  12. public Boolean SecurityEnabled { get; set; }
  13. public String Visibility { get; set; }
  14. [JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
  15. public string Id { get; set; }
  16. }
  17. }