move project

This commit is contained in:
2025-07-27 00:33:05 +02:00
parent 4544be2999
commit 5f8fb01a9f
100 changed files with 651 additions and 406 deletions

View File

@@ -0,0 +1,11 @@
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; }
}