Files
Keys/Models/PasswordStore.cs
2025-09-23 13:28:11 +02:00

9 lines
209 B
C#

namespace Models;
public class PasswordStore
{
public uint ID { get; set; }
public string Path { get; set; }
public string? DisplayName { get; set; }
public string? IconName { get; set; }
}