Files
limanapp/Core/SampleStats.cs
2021-11-17 15:30:18 +01:00

17 lines
422 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core
{
public class SampleStats
{
public string Name { get; set; } = "NA";
public DateTime DtFirst { get; set; } = DateTime.Now;
public DateTime DtLast { get; set; } = DateTime.Now;
public List<string> VList { get; set; } = new List<string>();
}
}