9 lines
209 B
C#
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; }
|
|
} |