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

11 lines
295 B
C#

using System.ComponentModel.DataAnnotations;
namespace TagVid.Models;
public class SettingsViewModel
{
[Required(ErrorMessage = "Video path is required.")]
[Display(Name = "Video Path")]
public string? VideoPath { get; set; } = null;
public string? ErrorMessage { get; set; }
}