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.
 
 
 
 
 

15 lines
351 B

using Newtonsoft.Json;
using System;
namespace WebApp.Outlook.Models
{
public class Member
{
public String GroupId { get; set; }
public String Upn { get; set; }
public bool Owner { get; set; }
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public string Id { get; set; }
}
}