diff --git a/dotnet/Global/Models/XboxLive/ProfileSettings.cs b/dotnet/Global/Models/XboxLive/ProfileSettings.cs new file mode 100644 index 00000000..8ac78c75 --- /dev/null +++ b/dotnet/Global/Models/XboxLive/ProfileSettings.cs @@ -0,0 +1,7 @@ +namespace Branch.Global.Models.XboxLive +{ + public class ProfileSettings + { + public ProfileUser[] ProfileUsers { get; set; } + } +} diff --git a/dotnet/Global/Models/XboxLive/ProfileUser.cs b/dotnet/Global/Models/XboxLive/ProfileUser.cs new file mode 100644 index 00000000..17e33cd1 --- /dev/null +++ b/dotnet/Global/Models/XboxLive/ProfileUser.cs @@ -0,0 +1,13 @@ +namespace Branch.Global.Models.XboxLive +{ + public class ProfileUser + { + public long ID { get; set; } + + public long HostID { get; set; } + + public ProfileUserSetting[] Settings { get; set; } + + public bool IsSponsoredUser { get; set; } + } +} diff --git a/dotnet/Global/Models/XboxLive/ProfileUserSetting.cs b/dotnet/Global/Models/XboxLive/ProfileUserSetting.cs new file mode 100644 index 00000000..c0b4605d --- /dev/null +++ b/dotnet/Global/Models/XboxLive/ProfileUserSetting.cs @@ -0,0 +1,9 @@ +namespace Branch.Global.Models.XboxLive +{ + public class ProfileUserSetting + { + public string ID { get; set; } + + public string Value { get; set; } + } +}