Add player count fields with validation and labeled UX

This commit is contained in:
2026-01-29 01:53:24 +01:00
parent f713756ece
commit af84fc50d4
10 changed files with 415 additions and 32 deletions

View File

@@ -29,6 +29,9 @@ public class Suggestion
[MaxLength(2048)]
public string? GameUrl { get; set; }
public int? MinPlayers { get; set; }
public int? MaxPlayers { get; set; }
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
public ICollection<Vote> Votes { get; set; } = new List<Vote>();