Files
the-cycle/src/Prospect.Server.Api/Services/Database/Models/PlayFabUserAuth.cs
T

12 lines
284 B
C#

using MongoDB.Bson.Serialization.Attributes;
namespace Prospect.Server.Api.Services.Database.Models;
public class PlayFabUserAuth
{
[BsonElement("Type")]
public PlayFabUserAuthType Type { get; set; }
[BsonElement("Key")]
public string Key { get; set; }
}