Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
and models...
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdeafcafe committed Apr 28, 2020
1 parent 2b27761 commit 60eb4c1
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dotnet/Global/Models/XboxLive/ProfileSettings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Branch.Global.Models.XboxLive
{
public class ProfileSettings
{
public ProfileUser[] ProfileUsers { get; set; }
}
}
13 changes: 13 additions & 0 deletions dotnet/Global/Models/XboxLive/ProfileUser.cs
Original file line number Diff line number Diff line change
@@ -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; }
}
}
9 changes: 9 additions & 0 deletions dotnet/Global/Models/XboxLive/ProfileUserSetting.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Branch.Global.Models.XboxLive
{
public class ProfileUserSetting
{
public string ID { get; set; }

public string Value { get; set; }
}
}

0 comments on commit 60eb4c1

Please sign in to comment.