17 lines
383 B
C#
17 lines
383 B
C#
namespace KoogleApp.Entities
|
|
{
|
|
public class PlayerExpense
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int PlayerId { get; set; } // Foreign Key
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
// Navigation Property zurück zum Parent
|
|
public Player Player { get; set; } = null!;
|
|
}
|
|
}
|