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.
19 lines
649 B
19 lines
649 B
using Newtonsoft.Json;
|
|
|
|
namespace WebApp.Outlook.Models
|
|
{
|
|
public class Team
|
|
{
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
public TeamGuestSettings guestSettings { get; set; }
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
public TeamMemberSettings memberSettings { get; set; }
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
public TeamMessagingSettings messagingSettings { get; set; }
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
public TeamFunSettings funSettings { get; set; }
|
|
}
|
|
}
|