using System; using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.API.ViewModels.v3 { [Serializable] public class PlaylistsCacheResponse { public static string Version = "1.1"; public List ViewModels { get; set; } public DateTime LastModified { get; set; } public DateTime GenerateDate { get; set; } public string HashETag { get; set; } } }