mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
14 lines
317 B
C#
14 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace BuildFeed.Models.ViewModel.Front
|
|
{
|
|
public class FrontBuildGroup
|
|
{
|
|
public BuildGroup Key { get; set; }
|
|
public DateTime? LastBuild { get; set; }
|
|
public int BuildCount { get; set; }
|
|
}
|
|
} |