├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── DstServerQuery.EntityFrameworkCore ├── DatabaseType.cs ├── DstServerQuery.EntityFrameworkCore.csproj ├── Helpers │ └── DateTimeOffsetUtcConverter.cs ├── HistoryCountService.cs └── Model │ ├── DstDbContext.cs │ ├── Entities │ ├── ColorItem.cs │ ├── DstPlayer.cs │ ├── DstServerHistory.cs │ └── ServerCountInfo.cs │ └── SimpleCacheDatabase.cs ├── DstServerQuery.Web ├── .config │ └── dotnet-tools.json ├── ConfigureSwaggerOptions.cs ├── Controllers │ ├── V1 │ │ └── ApiController.cs │ └── V2 │ │ ├── HelperController.cs │ │ ├── HistoryController.cs │ │ ├── ModsController.cs │ │ └── ServerController.cs ├── DstServerQuery.Web.csproj ├── DstServerQuery.Web.http ├── GeoLite2-City.mmdb ├── Helpers │ ├── Commands │ │ ├── AppcalitionCommand.cs │ │ ├── CommandPromptCallbacks.cs │ │ ├── DstCommand.cs │ │ └── GCCommand.cs │ ├── Console │ │ └── ControllableConsoleSink.cs │ ├── DstPlayerEqualityComparer.cs │ ├── Helper.cs │ └── ServerQueryer │ │ ├── JsonConverter │ │ ├── RegexValueJsonConverter.cs │ │ ├── StringArrayJsonConverter.cs │ │ ├── StringSplitConverter.cs │ │ └── ToStringJsonConverter.cs │ │ ├── LobbyServerQueryerV1.cs │ │ └── LobbyServerQueryerV2.cs ├── Migrations │ ├── MySql │ │ ├── 20231215085553_InitTo_AddDstPlayerIndex.Designer.cs │ │ ├── 20231215085553_InitTo_AddDstPlayerIndex.cs │ │ └── MySqlDstDbContextModelSnapshot.cs │ ├── PostgreSql │ │ ├── 20231215090257_InitTo_AddDstPlayerIndex.Designer.cs │ │ ├── 20231215090257_InitTo_AddDstPlayerIndex.cs │ │ └── PostgreSqlDstDbContextModelSnapshot.cs │ ├── SqlServer │ │ ├── 20231109061453_Init.Designer.cs │ │ ├── 20231109061453_Init.cs │ │ ├── 20231110030739_PlayerNotNull.Designer.cs │ │ ├── 20231110030739_PlayerNotNull.cs │ │ ├── 20231207104123_AddTagColor.Designer.cs │ │ ├── 20231207104123_AddTagColor.cs │ │ ├── 20231208134329_AddDateIndex.Designer.cs │ │ ├── 20231208134329_AddDateIndex.cs │ │ ├── 20231209045633_ToDateTimeOffset.Designer.cs │ │ ├── 20231209045633_ToDateTimeOffset.cs │ │ ├── 20231212090059_AddDstPlayerIndex.Designer.cs │ │ ├── 20231212090059_AddDstPlayerIndex.cs │ │ └── DstDbContextModelSnapshot.cs │ └── Sqlite │ │ ├── 20231215085623_InitTo_AddDstPlayerIndex.Designer.cs │ │ ├── 20231215085623_InitTo_AddDstPlayerIndex.cs │ │ └── SqliteDstDbContextModelSnapshot.cs ├── Models │ ├── Configurations │ │ ├── DstModsFileServiceOptions.cs │ │ ├── DstVersionServiceOptions.cs │ │ └── SteamOptions.cs │ ├── DstModCount.cs │ ├── DstModNameCount.cs │ ├── DstServerQueryWeb.cs │ ├── Http │ │ ├── ColorResponse.cs │ │ ├── GetPlayersResponse.cs │ │ ├── GetServerVersionResponse.cs │ │ ├── GetTotalResponse.cs │ │ ├── ListResponse.cs │ │ ├── Mods │ │ │ ├── DstModsInfoResponse.cs │ │ │ ├── DstModsNameUsageResponse.cs │ │ │ ├── DstModsUsageResponse.cs │ │ │ └── ModsQueryResponse.cs │ │ ├── PlayerServerHistoryResponse.cs │ │ ├── PrefabsResponse.cs │ │ ├── ResponseBase.cs │ │ ├── ServerCountHistoryResponse.cs │ │ ├── ServerDetailsResponse.cs │ │ ├── ServerHistoryResponse.cs │ │ └── TagsResponse.cs │ ├── PlayerInfoItem.cs │ └── ServerHistoryItem.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── AppHostedService.cs │ ├── CommandService.cs │ ├── DstHistoryService.cs │ ├── DstModsFileHosedService.cs │ ├── HistoryCleanupService.cs │ └── TrafficRateLimiter │ │ ├── TrafficChunk.cs │ │ ├── TrafficContext.cs │ │ ├── TrafficLimiterExtensions.cs │ │ ├── TrafficMonitorStream.cs │ │ ├── TrafficRateLimit.cs │ │ └── TrafficRateLimitOptions.cs ├── appsettings.Development.json ├── appsettings.json ├── libman.json ├── migrate-dst.ps1 └── wwwroot │ └── doc │ └── swagger_ext.js ├── DstServerQuery.slnx ├── DstServerQuery ├── Converters │ ├── GameModeConverter.cs │ ├── IPAddressInfoConverter.cs │ ├── IdCacheConverter.cs │ ├── IntentConverter.cs │ ├── LobbyDaysInfoConverter.cs │ ├── LobbyGuidConverter.cs │ ├── LobbyModsInfoConverter.cs │ ├── LobbyNumberIdConverter.cs │ ├── LobbyPlayersInfoConverter.cs │ ├── LobbySeasonConverter.cs │ ├── LobbySessionIdConverter.cs │ ├── LobbySteamIdConverter.cs │ ├── LobbyTagsConverter.cs │ ├── LobbyWorldGenConverter.cs │ └── LobbyWorldLevelConverter.cs ├── DstServerQuery.csproj ├── Helpers │ ├── ConcurrentStringCacheDictionary.cs │ ├── DstConverterHelper.cs │ ├── DstEnumText.cs │ ├── JsonSourceGeneraterContext.cs │ ├── LuaTempEnvironment.cs │ ├── StreamWriterHttpContent.cs │ ├── TempUtf8JsonString.cs │ └── Utils.cs ├── LobbyDownloader.cs ├── LobbyServerManager.cs ├── Models │ ├── IPAddressInfo.cs │ ├── LevelDataOverrideEnum.cs │ ├── Lobby │ │ ├── Interfaces │ │ │ ├── V1 │ │ │ │ ├── ILobbyServerDetailedV1.cs │ │ │ │ └── ILobbyServerV1.cs │ │ │ └── V2 │ │ │ │ ├── ILobbyServerDetailedV2.cs │ │ │ │ └── ILobbyServerV2.cs │ │ ├── LobbyGameMode.cs │ │ ├── LobbyGuid.cs │ │ ├── LobbyIntent.cs │ │ ├── LobbyNumberId.cs │ │ ├── LobbySeason.cs │ │ ├── LobbyServer.cs │ │ ├── LobbyServerDetailed.cs │ │ ├── LobbySessionId.cs │ │ └── LobbySteamId.cs │ ├── LobbyDaysInfo.cs │ ├── LobbyGet.cs │ ├── LobbyModInfo.cs │ ├── LobbyPlayerInfo.cs │ ├── Platform.cs │ ├── Requests │ │ └── DstWebConfig.cs │ └── WorldLevelItem.cs └── Services │ ├── DstVersionService.cs │ └── GeoIPService.cs ├── LICENSE.txt ├── README.md ├── publish-linux.bat └── publish-win.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/.gitmodules -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/DatabaseType.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/DstServerQuery.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/DstServerQuery.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Helpers/DateTimeOffsetUtcConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Helpers/DateTimeOffsetUtcConverter.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/HistoryCountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/HistoryCountService.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Model/DstDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Model/DstDbContext.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Model/Entities/ColorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Model/Entities/ColorItem.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Model/Entities/DstPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Model/Entities/DstPlayer.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Model/Entities/DstServerHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Model/Entities/DstServerHistory.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Model/Entities/ServerCountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Model/Entities/ServerCountInfo.cs -------------------------------------------------------------------------------- /DstServerQuery.EntityFrameworkCore/Model/SimpleCacheDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.EntityFrameworkCore/Model/SimpleCacheDatabase.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/.config/dotnet-tools.json -------------------------------------------------------------------------------- /DstServerQuery.Web/ConfigureSwaggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/ConfigureSwaggerOptions.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Controllers/V1/ApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Controllers/V1/ApiController.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Controllers/V2/HelperController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Controllers/V2/HelperController.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Controllers/V2/HistoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Controllers/V2/HistoryController.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Controllers/V2/ModsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Controllers/V2/ModsController.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Controllers/V2/ServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Controllers/V2/ServerController.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/DstServerQuery.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/DstServerQuery.Web.csproj -------------------------------------------------------------------------------- /DstServerQuery.Web/DstServerQuery.Web.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/DstServerQuery.Web.http -------------------------------------------------------------------------------- /DstServerQuery.Web/GeoLite2-City.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/GeoLite2-City.mmdb -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/Commands/AppcalitionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/Commands/AppcalitionCommand.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/Commands/CommandPromptCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/Commands/CommandPromptCallbacks.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/Commands/DstCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/Commands/DstCommand.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/Commands/GCCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/Commands/GCCommand.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/Console/ControllableConsoleSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/Console/ControllableConsoleSink.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/DstPlayerEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/DstPlayerEqualityComparer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/Helper.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/RegexValueJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/RegexValueJsonConverter.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/StringArrayJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/StringArrayJsonConverter.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/StringSplitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/StringSplitConverter.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/ToStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/ServerQueryer/JsonConverter/ToStringJsonConverter.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/ServerQueryer/LobbyServerQueryerV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/ServerQueryer/LobbyServerQueryerV1.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Helpers/ServerQueryer/LobbyServerQueryerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Helpers/ServerQueryer/LobbyServerQueryerV2.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/MySql/20231215085553_InitTo_AddDstPlayerIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/MySql/20231215085553_InitTo_AddDstPlayerIndex.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/MySql/20231215085553_InitTo_AddDstPlayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/MySql/20231215085553_InitTo_AddDstPlayerIndex.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/MySql/MySqlDstDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/MySql/MySqlDstDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/PostgreSql/20231215090257_InitTo_AddDstPlayerIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/PostgreSql/20231215090257_InitTo_AddDstPlayerIndex.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/PostgreSql/20231215090257_InitTo_AddDstPlayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/PostgreSql/20231215090257_InitTo_AddDstPlayerIndex.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/PostgreSql/PostgreSqlDstDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/PostgreSql/PostgreSqlDstDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231109061453_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231109061453_Init.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231109061453_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231109061453_Init.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231110030739_PlayerNotNull.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231110030739_PlayerNotNull.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231110030739_PlayerNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231110030739_PlayerNotNull.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231207104123_AddTagColor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231207104123_AddTagColor.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231207104123_AddTagColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231207104123_AddTagColor.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231208134329_AddDateIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231208134329_AddDateIndex.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231208134329_AddDateIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231208134329_AddDateIndex.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231209045633_ToDateTimeOffset.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231209045633_ToDateTimeOffset.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231209045633_ToDateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231209045633_ToDateTimeOffset.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231212090059_AddDstPlayerIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231212090059_AddDstPlayerIndex.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/20231212090059_AddDstPlayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/20231212090059_AddDstPlayerIndex.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/SqlServer/DstDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/SqlServer/DstDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/Sqlite/20231215085623_InitTo_AddDstPlayerIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/Sqlite/20231215085623_InitTo_AddDstPlayerIndex.Designer.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/Sqlite/20231215085623_InitTo_AddDstPlayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/Sqlite/20231215085623_InitTo_AddDstPlayerIndex.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Migrations/Sqlite/SqliteDstDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Migrations/Sqlite/SqliteDstDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Configurations/DstModsFileServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Configurations/DstModsFileServiceOptions.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Configurations/DstVersionServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Configurations/DstVersionServiceOptions.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Configurations/SteamOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Configurations/SteamOptions.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/DstModCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/DstModCount.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/DstModNameCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/DstModNameCount.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/DstServerQueryWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/DstServerQueryWeb.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/ColorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/ColorResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/GetPlayersResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/GetPlayersResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/GetServerVersionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/GetServerVersionResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/GetTotalResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/GetTotalResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/ListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/ListResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/Mods/DstModsInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/Mods/DstModsInfoResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/Mods/DstModsNameUsageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/Mods/DstModsNameUsageResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/Mods/DstModsUsageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/Mods/DstModsUsageResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/Mods/ModsQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/Mods/ModsQueryResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/PlayerServerHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/PlayerServerHistoryResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/PrefabsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/PrefabsResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/ResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/ResponseBase.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/ServerCountHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/ServerCountHistoryResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/ServerDetailsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/ServerDetailsResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/ServerHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/ServerHistoryResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/Http/TagsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/Http/TagsResponse.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/PlayerInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/PlayerInfoItem.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Models/ServerHistoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Models/ServerHistoryItem.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Program.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/AppHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/AppHostedService.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/CommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/CommandService.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/DstHistoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/DstHistoryService.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/DstModsFileHosedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/DstModsFileHosedService.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/HistoryCleanupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/HistoryCleanupService.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/TrafficRateLimiter/TrafficChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/TrafficRateLimiter/TrafficChunk.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/TrafficRateLimiter/TrafficContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/TrafficRateLimiter/TrafficContext.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/TrafficRateLimiter/TrafficLimiterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/TrafficRateLimiter/TrafficLimiterExtensions.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/TrafficRateLimiter/TrafficMonitorStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/TrafficRateLimiter/TrafficMonitorStream.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/TrafficRateLimiter/TrafficRateLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/TrafficRateLimiter/TrafficRateLimit.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/Services/TrafficRateLimiter/TrafficRateLimitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/Services/TrafficRateLimiter/TrafficRateLimitOptions.cs -------------------------------------------------------------------------------- /DstServerQuery.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/appsettings.Development.json -------------------------------------------------------------------------------- /DstServerQuery.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/appsettings.json -------------------------------------------------------------------------------- /DstServerQuery.Web/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/libman.json -------------------------------------------------------------------------------- /DstServerQuery.Web/migrate-dst.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/migrate-dst.ps1 -------------------------------------------------------------------------------- /DstServerQuery.Web/wwwroot/doc/swagger_ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.Web/wwwroot/doc/swagger_ext.js -------------------------------------------------------------------------------- /DstServerQuery.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery.slnx -------------------------------------------------------------------------------- /DstServerQuery/Converters/GameModeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/GameModeConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/IPAddressInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/IPAddressInfoConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/IdCacheConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/IdCacheConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/IntentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/IntentConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyDaysInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyDaysInfoConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyGuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyGuidConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyModsInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyModsInfoConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyNumberIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyNumberIdConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyPlayersInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyPlayersInfoConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbySeasonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbySeasonConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbySessionIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbySessionIdConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbySteamIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbySteamIdConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyTagsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyTagsConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyWorldGenConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyWorldGenConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/Converters/LobbyWorldLevelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Converters/LobbyWorldLevelConverter.cs -------------------------------------------------------------------------------- /DstServerQuery/DstServerQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/DstServerQuery.csproj -------------------------------------------------------------------------------- /DstServerQuery/Helpers/ConcurrentStringCacheDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/ConcurrentStringCacheDictionary.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/DstConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/DstConverterHelper.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/DstEnumText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/DstEnumText.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/JsonSourceGeneraterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/JsonSourceGeneraterContext.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/LuaTempEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/LuaTempEnvironment.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/StreamWriterHttpContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/StreamWriterHttpContent.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/TempUtf8JsonString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/TempUtf8JsonString.cs -------------------------------------------------------------------------------- /DstServerQuery/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Helpers/Utils.cs -------------------------------------------------------------------------------- /DstServerQuery/LobbyDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/LobbyDownloader.cs -------------------------------------------------------------------------------- /DstServerQuery/LobbyServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/LobbyServerManager.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/IPAddressInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/IPAddressInfo.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/LevelDataOverrideEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/LevelDataOverrideEnum.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/Interfaces/V1/ILobbyServerDetailedV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/Interfaces/V1/ILobbyServerDetailedV1.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/Interfaces/V1/ILobbyServerV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/Interfaces/V1/ILobbyServerV1.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/Interfaces/V2/ILobbyServerDetailedV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/Interfaces/V2/ILobbyServerDetailedV2.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/Interfaces/V2/ILobbyServerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/Interfaces/V2/ILobbyServerV2.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbyGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbyGameMode.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbyGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbyGuid.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbyIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbyIntent.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbyNumberId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbyNumberId.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbySeason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbySeason.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbyServer.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbyServerDetailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbyServerDetailed.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbySessionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbySessionId.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Lobby/LobbySteamId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Lobby/LobbySteamId.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/LobbyDaysInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/LobbyDaysInfo.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/LobbyGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/LobbyGet.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/LobbyModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/LobbyModInfo.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/LobbyPlayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/LobbyPlayerInfo.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Platform.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/Requests/DstWebConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/Requests/DstWebConfig.cs -------------------------------------------------------------------------------- /DstServerQuery/Models/WorldLevelItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Models/WorldLevelItem.cs -------------------------------------------------------------------------------- /DstServerQuery/Services/DstVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Services/DstVersionService.cs -------------------------------------------------------------------------------- /DstServerQuery/Services/GeoIPService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/DstServerQuery/Services/GeoIPService.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/README.md -------------------------------------------------------------------------------- /publish-linux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/publish-linux.bat -------------------------------------------------------------------------------- /publish-win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyfairy/DstServerQuery/HEAD/publish-win.bat --------------------------------------------------------------------------------