Start refactor of backend

This commit is contained in:
Eero Holmala 2024-07-22 14:05:36 +03:00
parent f008c31c21
commit eabb7b5a2c
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,16 @@
namespace Users.Api.Contracts.Data;
public class UserDto
{
public string Id { get; init; } = default!;
public string Username { get; init; } = default!;
public string Email { get; init; } = default!;
public byte[] PasswordHash { get; init; } = default!;
public DateTime Created { get; init; }
public DateTime Updated { get; init; }
}

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WretchedMachinesBackend", "WretchedMachinesBackend.csproj", "{A9D8EB0B-C828-47D2-99ED-94ABF8BB3D75}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A9D8EB0B-C828-47D2-99ED-94ABF8BB3D75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A9D8EB0B-C828-47D2-99ED-94ABF8BB3D75}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A9D8EB0B-C828-47D2-99ED-94ABF8BB3D75}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A9D8EB0B-C828-47D2-99ED-94ABF8BB3D75}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4B866C14-5893-473B-AD16-A48F3F277F01}
EndGlobalSection
EndGlobal