mirror of
https://github.com/sphildreth/roadie
synced 2024-11-27 14:40:55 +00:00
13 lines
260 B
C#
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; }
|
|
}
|
|
}
|