Started working on loading password list from viewModel

This commit is contained in:
2025-09-30 19:05:53 +02:00
parent c8d98e72d0
commit e117748bb5
6 changed files with 152 additions and 12 deletions

6
src/Models/Password.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Models;
public class Password
{
public string Name { get; set; }
}