// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MetadataServer.Models { public class EventSummary { public enum ReviewVerdict { Unknown, Good, Bad, Mixed, } public int ChangeNumber; public ReviewVerdict Verdict; public List SyncEvents = new List(); public List Reviews = new List(); public List CurrentUsers = new List(); public EventData LastStarReview; public List Builds = new List(); public List Comments = new List(); } }