BuildFeed/BuildFeed.Model/Api/ApiBuild.cs
Thomas Hounsell 455f48c2ac API changes
Also update the Xbox lab
2017-04-18 21:29:43 +01:00

21 lines
547 B
C#

using System;
namespace BuildFeed.Model.Api
{
public class ApiBuild : BuildDetails
{
public Guid Id { get; set; }
public string FullBuildString { get; set; }
public string AlternateBuildString { get; set; }
public string LabUrl { get; set; }
public bool IsLeaked => SourceType == TypeOfSource.PublicRelease || SourceType == TypeOfSource.InternalLeak || SourceType == TypeOfSource.UpdateGDR;
public DateTime Added { get; set; }
public DateTime Modified { get; set; }
}
}