VideoConcat/Models/MainWindowModel.cs
2024-12-23 10:22:20 +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; }
}
}