Files
Keys/Models/PasswordStore.cs

9 lines
209 B
C#
Raw Normal View History

namespace Models;
public class PasswordStore
{
2025-09-22 15:35:31 +02:00
public uint ID { get; set; }
public string Path { get; set; }
public string? DisplayName { get; set; }
public string? IconName { get; set; }
2025-09-22 13:08:08 +02:00
}