Remotely/Shared/Models/ReceivedFrame.cs
2021-08-15 11:17:31 -07:00

15 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely.Shared.Models
{
public struct ReceivedFrame
{
public int FrameSize { get; init; }
public TimeSpan TimeToSend { get; init; }
}
}