LANCommander/LANCommander.SDK/Models/PlaySession.cs

13 lines
279 B
C#
Raw Permalink Normal View History

2024-02-14 01:57:54 -06:00
using System;
namespace LANCommander.SDK.Models
{
public class PlaySession : BaseModel
{
public DateTime? Start { get; set; }
public DateTime? End { get; set; }
public Guid GameId { get; set; }
public Guid UserId { get; set; }
2024-02-14 01:57:54 -06:00
}
}