using System; namespace Sony.Filtr.Core.EditorialPlaylists { [Serializable] public class PlaylistStat { public string PlaylistId { get; set; } public uint Subscribers { get; set; } public DateTime Date { get; set; } } }