Initial Commit

This commit is contained in:
2025-07-04 20:33:06 +03:00
commit 8f09347ae0
9219 changed files with 2447903 additions and 0 deletions
@@ -0,0 +1,29 @@
// (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
namespace Oculus.Platform
{
using System;
using System.Collections.Generic;
[Serializable]
public class HorizonProfileTokenResponse
{
public DataModel data;
}
[Serializable]
public class DataModel {
public XfrCreateProfileTokenModel xfr_create_profile_token;
}
[Serializable]
public class XfrCreateProfileTokenModel {
public List<ProfileTokenModel> profile_tokens;
}
[Serializable]
public class ProfileTokenModel {
public string profile_id;
public string access_token;
}
}