mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
10 lines
210 B
C#
10 lines
210 B
C#
namespace Database.Entities;
|
|
|
|
public class Admonition : BaseEntity
|
|
{
|
|
public required string Reason { get; set; }
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public required Player Player { get; set; }
|
|
} |