12 lines
284 B
C#
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; }
|
|
} |