BuildFeed/BuildFeed.Model/View/FrontBuildGroup.cs

11 lines
225 B
C#
Raw Normal View History

2015-05-04 23:43:20 +08:00
using System;
namespace BuildFeed.Model.View
2015-05-04 23:43:20 +08:00
{
public class FrontBuildGroup
{
public int BuildCount { get; set; }
public BuildGroup Key { get; set; }
public DateTime? LastBuild { get; set; }
}
2015-05-04 23:43:20 +08:00
}