16 lines
360 B
C#
16 lines
360 B
C#
|
|
namespace TeamsISO.Engine.Domain;
|
||
|
|
|
||
|
|
public sealed record IsoHealthStats(
|
||
|
|
long FramesIn,
|
||
|
|
long FramesOut,
|
||
|
|
long FramesDropped,
|
||
|
|
long FramesDuplicated,
|
||
|
|
DateTimeOffset? LastFrameAt,
|
||
|
|
double IncomingFps,
|
||
|
|
int IncomingWidth,
|
||
|
|
int IncomingHeight)
|
||
|
|
{
|
||
|
|
public static readonly IsoHealthStats Empty =
|
||
|
|
new(0, 0, 0, 0, null, 0, 0, 0);
|
||
|
|
}
|