mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
14 lines
287 B
C#
14 lines
287 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace BuildFeed.Model.Api
|
|
{
|
|
public class FamilyOverview
|
|
{
|
|
[BsonElement("_id")]
|
|
public int Family { get; set; }
|
|
|
|
public ulong Count { get; set; }
|
|
|
|
public BuildDetails Latest { get; set; }
|
|
}
|
|
} |