mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
11 lines
234 B
C#
11 lines
234 B
C#
using System;
|
|
|
|
namespace BuildFeed.Model.View
|
|
{
|
|
public class FrontBuildGroup
|
|
{
|
|
public int BuildCount { get; set; }
|
|
public BuildGroup Key { get; set; }
|
|
public DateTime? LastBuild { get; set; }
|
|
}
|
|
} |