Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-strecker-sonarsource committed Jan 2, 2024
1 parent c7badca commit 11c0847
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ProtoBufViewer.Blazor/Pages/Index.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public partial class Index
private const string DefaultDragClass = "relative rounded-lg border-2 border-dashed pa-4 mt-4 mud-width-full mud-height-full z-10";
private IBrowserFile? ProtoFile;
private IBrowserFile? ProtoBinFile;

HashSet<MessageViewModel> Messages { get; } = new();
MessageViewModel? SelectedMessage { get; set; }
ProtoContext? ParseResult { get; set; }
public double? Progress { get; set; }

List<ProtoType>? TypedMessages { get; set; }

private async Task MessageFileChanged(IBrowserFile file)
Expand Down
2 changes: 2 additions & 0 deletions ProtoBufViewer.Blazor/Pages/Index.razor
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
@page "/"
@using Google.Protobuf
@using ProtoBuf.Logic
@using ProtoBufViewer.Blazor.Components

@using static ProtoBuf.Antlr.Protobuf3Parser

<PageTitle>Protobuf Viewer</PageTitle>
Expand Down

0 comments on commit 11c0847

Please sign in to comment.