Skip to content

Commit

Permalink
Fix user PB crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Heufneutje committed Dec 1, 2024
1 parent 20ea54e commit 6fb854d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion SpeedrunTracker/Models/SpeedrunDotCom/GamePlatform.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
namespace SpeedrunTracker.Models.SpeedrunDotCom;
using System.Text.Json.Serialization;

namespace SpeedrunTracker.Models.SpeedrunDotCom;

public record GamePlatform : BaseSpeedrunModel, INamedSpeedrunModel
{
[JsonPropertyName("name")]
public required string Name { get; set; }
}

0 comments on commit 6fb854d

Please sign in to comment.