mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-06 09:41:38 -05:00
18 lines
327 B
C#
18 lines
327 B
C#
![]() |
using System;
|
||
|
using System.Numerics;
|
||
|
|
||
|
namespace OTDPlugins.MeL.Core
|
||
|
{
|
||
|
public class TimeSeriesPoint
|
||
|
{
|
||
|
public TimeSeriesPoint(Vector2 point, DateTime date)
|
||
|
{
|
||
|
Point = point;
|
||
|
Date = date;
|
||
|
}
|
||
|
|
||
|
public Vector2 Point { get; }
|
||
|
public DateTime Date { get; }
|
||
|
|
||
|
}
|
||
|
}
|