Files
tagvid/Models/DetailsViewModel.cs
2025-07-27 00:33:05 +02:00

8 lines
234 B
C#

namespace TagVid.Models;
public class DetailsViewModel
{
public string VideoId { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<string> Tags { get; set; } = new List<string>();
}