Skip to content
Open
Show file tree
Hide file tree
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
15 changes: 0 additions & 15 deletions DataQuery/DataQuery.csproj

This file was deleted.

190 changes: 0 additions & 190 deletions DataQuery/Program.cs

This file was deleted.

6 changes: 6 additions & 0 deletions Definitions/Definitions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="ObjectModels\Graphics\ImageTableGroups.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>


Expand Down
14 changes: 14 additions & 0 deletions Definitions/ObjectModels/Graphics/ImageTableGroupConfiguration.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Text.Json.Serialization;

namespace Definitions.ObjectModels.Graphics;

internal sealed record ImageTableGroupDefinition(
[property: JsonPropertyName("name")] string Name,
[property: JsonPropertyName("start")] int Start,
[property: JsonPropertyName("chunkSize")] int? ChunkSize = null
);

internal sealed record ImageTableGroupConfiguration(
[property: JsonPropertyName("objectType")] string ObjectType,
[property: JsonPropertyName("groups")] List<ImageTableGroupDefinition> Groups
);
Loading