Remotely/Shared/Models/SentFrame.cs
2024-07-16 09:25:15 -07:00

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; }
}