mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
14 lines
291 B
C#
14 lines
291 B
C#
namespace Remotely.Shared.Models;
|
|
|
|
public readonly struct SentFrame
|
|
{
|
|
public SentFrame(int frameSize, DateTimeOffset timestamp)
|
|
{
|
|
FrameSize = frameSize;
|
|
Timestamp = timestamp;
|
|
}
|
|
|
|
public DateTimeOffset Timestamp { get; }
|
|
public int FrameSize { get; }
|
|
}
|