mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
12 lines
260 B
C#
12 lines
260 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Database.Entities;
|
|
|
|
public class User : IdentityUser<Guid>
|
|
{
|
|
public required Alliance Alliance { get; set; }
|
|
|
|
public Guid AllianceId { get; set; }
|
|
|
|
public required string PlayerName { get; set; }
|
|
} |