Moved source to subfolder
This commit is contained in:
9
src/Models/Models.csproj
Normal file
9
src/Models/Models.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
9
src/Models/PasswordStore.cs
Normal file
9
src/Models/PasswordStore.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user