Skip to content

Commit

Permalink
refactor emulator field to be nullable but still required
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterjun3 committed Aug 22, 2024
1 parent dd7060e commit 16296a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TASVideos/Pages/Publications/Catalog.cshtml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ public class PublicationCatalog
public int SystemFramerate { get; init; }

[StringLength(50)]
public string Emulator { get; init; } = "";
[Required]
public string? Emulator { get; init; }
}
}

0 comments on commit 16296a7

Please sign in to comment.