9 lines
252 B
C#
9 lines
252 B
C#
namespace Prospect.Server.Api.Config;
|
|
|
|
public class PlayFabSettings
|
|
{
|
|
public string PublisherId { get; set; }
|
|
public string TitleId { get; set; }
|
|
public string SignalRURL { get; set; }
|
|
public string SignalRAccessToken { get; set; }
|
|
} |