mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-06 01:31:39 -05:00
18 lines
No EOL
327 B
C#
18 lines
No EOL
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; }
|
|
|
|
}
|
|
} |