8 lines
196 B
C#
8 lines
196 B
C#
namespace RecNet.Infrastructure.Services.Steam;
|
|
|
|
public class SteamOptions
|
|
{
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public string AppId { get; set; } = "480"; // Spacewar
|
|
}
|