roadie/Roadie.Api.Library/Models/Statistics/DateAndCount.cs
2018-12-26 13:39:13 -06:00

13 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Roadie.Library.Models.Statistics
{
[Serializable]
public class DateAndCount
{
public int? Count { get; set; }
public string Date { get; set; }
}
}