16 lines
422 B
C#
16 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AudioWallpaper.ActivityWatch {
|
|
public class ActivityEntry {
|
|
public DateTime Timestamp { get; set; }
|
|
public double Duration { get; set; }
|
|
public string App { get; set; }
|
|
public string Title { get; set; }
|
|
public string RawTitle { get; set; }
|
|
}
|
|
}
|