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