using System; namespace FoxTube.Models { public class SavedVideo { public string Title { get; set; } public string Author { get; set; } public string Thumbnail { get; set; } public TimeSpan Duration { get; set; } public string Id { get; set; } public string AccessToken { get; set; } public string Path { get; set; } public bool IsPathValid { get; set; } = true; } }