mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 10:12:50 +08:00
17 lines
337 B
C#
17 lines
337 B
C#
using System;
|
|
|
|
namespace Spectre.Console.Internal
|
|
{
|
|
internal readonly struct ProgressSample
|
|
{
|
|
public double Value { get; }
|
|
public DateTime Timestamp { get; }
|
|
|
|
public ProgressSample(DateTime timestamp, double value)
|
|
{
|
|
Timestamp = timestamp;
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|