using System.Collections.Generic; using System.Linq; namespace BizHawk.Client.Common { public class TasMovieRecord { public KeyValuePair State { get; set; } public bool? Lagged { get; set; } public string LogEntry { get; set; } public bool HasState { get { return State.Value.Any(); } } } }