Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ internal class InjectionRequest
/// <summary>
/// Your SocketLabs ServerId number.
/// </summary>
public readonly int _serverId;
private readonly int _serverId;

/// <summary>
/// Your SocketLabs Injection API key.
/// </summary>
public readonly string? _apiKey;
private readonly string? _apiKey;

public int ServerId => _serverId;
public string? ApiKey => _apiKey;

/// <summary>
/// Creates a new instance of the <c>InjectionRequest</c> class.
Expand All @@ -29,7 +32,6 @@ public InjectionRequest(int serverId, string? apiKey)
{
_serverId = serverId;
_apiKey = apiKey;
Messages = new List<MessageJson>();
}

/// <summary>
Expand Down
Loading