7 lines
195 B
C#
7 lines
195 B
C#
|
|
namespace LANCommander.Server.Settings.Models;
|
||
|
|
|
||
|
|
public class IGDBSettings
|
||
|
|
{
|
||
|
|
public string ClientId { get; set; } = String.Empty;
|
||
|
|
public string ClientSecret { get; set; } = String.Empty;
|
||
|
|
}
|