Salmon/Salmon.Core/Triplet.cs
2024-04-11 21:30:36 +02:00

14 lines
324 B
C#

namespace Salmon.Core;
public class Triplet
{
public string key { get; set; }
public string predicate { get; set; }
public object? value { get; set; }
public DateTime LastFlush { get; set; } = DateTime.Now;
public override string ToString()
{
return $"{key} {predicate} {value}";
}
}