27 lines
774 B
C#
27 lines
774 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Data.Models
|
|
{
|
|
[Table("PlaySessions")]
|
|
public class PlaySession : BaseModel
|
|
{
|
|
public Guid? GameId { get; set; }
|
|
[JsonIgnore]
|
|
[ForeignKey(nameof(GameId))]
|
|
[InverseProperty("PlaySessions")]
|
|
public virtual Game? Game { get; set; }
|
|
|
|
public Guid UserId { get; set; }
|
|
[ForeignKey(nameof(UserId))]
|
|
[InverseProperty("PlaySessions")]
|
|
public virtual User? User { get; set; }
|
|
|
|
[Display(Name = "Start")]
|
|
public DateTime? Start { get; set; }
|
|
|
|
[Display(Name = "End")]
|
|
public DateTime? End { get; set; }
|
|
}
|
|
}
|