Remotely/Shared/Models/SentFrame.cs
Jared Goodwin ec2ae45e88 Merged PR 9: Auto-quality tweaks.
Auto-quality updates.
2021-08-07 17:53:14 +00:00

22 lines
450 B
C#

using Remotely.Shared.Utilities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely.Shared.Models
{
public struct SentFrame
{
public SentFrame(int frameSize)
{
Timestamp = Time.Now;
FrameSize = frameSize;
}
public DateTimeOffset Timestamp { get; }
public double FrameSize { get; }
}
}