roadie/Roadie.Api.Library/Models/Statistics/DateAndCount.cs

14 lines
260 B
C#
Raw Normal View History

2018-12-09 03:16:05 +00:00
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; }
}
}