Moved source to subfolder

This commit is contained in:
2025-09-26 11:04:03 +02:00
parent 22ad11add1
commit 6902aeb9c0
17 changed files with 0 additions and 0 deletions

9
src/Models/Models.csproj Normal file
View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View 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; }
}