aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Diagnostics/TimeCodeChannelFrame.cs
blob: c1f0f0582c7920cf9afb08445198ec13e0902177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Integration.Diagnostics
{
    [Serializable]
    public class TimeCodeChannelFrame
    {
        public long FrameLength { get; set; }
        public TimeSpan TimeStamp { get; set; }

        public TimeCodeChannelFrame(long frameLength, TimeSpan timeStamp)
        {
            FrameLength = frameLength;
            TimeStamp = timeStamp;
        }
    }
}