Upgrade to .NET 10 and finalize foundation scaffold
This commit is contained in:
16
Domain/Player.cs
Normal file
16
Domain/Player.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace GameList.Domain;
|
||||
|
||||
public class Player
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
|
||||
[MaxLength(64)]
|
||||
public string? DisplayName { get; set; }
|
||||
|
||||
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
|
||||
|
||||
public ICollection<Suggestion> Suggestions { get; set; } = new List<Suggestion>();
|
||||
public ICollection<Vote> Votes { get; set; } = new List<Vote>();
|
||||
}
|
||||
Reference in New Issue
Block a user