Files
TenWholeYears.Server/RecNet.Infrastructure/Services/Steam/SteamOptions.cs

9 lines
245 B
C#

namespace RecNet.Infrastructure.Services.Steam;
public class SteamOptions
{
public string ApiKey { get; set; } = string.Empty;
public uint AppId { get; set; } = 480; // Spacewar
public string Identity { get; set; } = "recnet";
}