12 lines
362 B
C#
12 lines
362 B
C#
namespace TeamsISO.Engine.Domain;
|
|
|
|
/// <summary>
|
|
/// Operator-facing identity for a single human in the meeting.
|
|
/// <c>Id</c> is engine-assigned and stable across the rename heuristic.
|
|
/// </summary>
|
|
public sealed record Participant(
|
|
Guid Id,
|
|
string DisplayName,
|
|
NdiSource? CurrentSource,
|
|
DateTimeOffset FirstSeen,
|
|
DateTimeOffset LastSeen);
|