10 lines
272 B
C#
Raw Normal View History

namespace BuildFeed.Model.View
{
2017-01-22 22:50:19 +00:00
public class FrontPage
{
public Build CurrentCanary { get; set; }
public Build CurrentInsider { get; set; }
public Build CurrentRelease { get; set; }
public Build CurrentXbox { get; set; }
}
}