move project
This commit is contained in:
11
Models/SettingsViewModel.cs
Normal file
11
Models/SettingsViewModel.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user