VideoConcat/Models/MainWindowModel.cs
2024-12-22 22:23:05 +08:00

15 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VideoConcat.Models
{
internal class MainWindowModel
{
public string? UserName { get; set; }
public string? PassWord { get; set; }
}
}