using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AudioWallpaper.ActivityWatch { public class TimeSliceData { public double ActiveSeconds { get; set; } public Dictionary AppUsage { get; set; } = new Dictionary(); public HashSet WindowTitles { get; set; } = new HashSet(); public List Events { get; set; } = new List(); public int SwitchCount { get; set; } public int KeywordsMatched { get; set; } public int DistractionCount { get; set; } public string DominantProcess { get; set; } } }