ab38238fe8
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
19 lines
497 B
C#
19 lines
497 B
C#
using GmRelay.Shared.Domain;
|
|
using GmRelay.Shared.Platform;
|
|
|
|
namespace GmRelay.Shared.Features.Sessions.CreateSession;
|
|
|
|
public sealed record CreateSessionCommand(
|
|
PlatformUser User,
|
|
PlatformGroup Group,
|
|
string Title,
|
|
string Link,
|
|
IReadOnlyList<DateTimeOffset> ScheduledTimes,
|
|
int? MaxPlayers,
|
|
string? ImageReference,
|
|
GameSystem? System = null,
|
|
string? Description = null,
|
|
string? Format = null,
|
|
int? DurationMinutes = null,
|
|
bool IsOneShot = false);
|