Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube.Core/Models/SavedVideo.cs
T
2020-05-09 23:16:19 +03:00

18 lines
391 B
C#

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;
}
}