17 lines
422 B
C#
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>();
|
|
}
|
|
}
|