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