BuildFeed/BuildFeed.Model/View/FrontBuildGroup.cs

11 lines
234 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
{
2017-02-24 04:53:49 +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
}