Commit 8917ad0c authored by Eric Dieckman's avatar Eric Dieckman
Browse files

Update Domain namespace to Models

parent 65520e2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Infrastructure", "Infrastru
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Infrastructure", "src\infrastructure\Infrastructure.csproj", "{509BD80B-4EB3-43CF-8CE1-3930BA5C74EE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Domain", "src\domain\Domain.csproj", "{E7CE601E-E44E-4D13-8084-715B6C6540C0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Models", "src\domain\Models.csproj", "{E7CE601E-E44E-4D13-8084-715B6C6540C0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Web", "src\web\Web.csproj", "{3FBA50F6-2B43-4BB3-AB37-D33BA82A8ADA}"
EndProject
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
	</ItemGroup>

	<ItemGroup>
		<ProjectReference Include="..\domain\Domain.csproj" />
		<ProjectReference Include="..\domain\Models.csproj" />
	</ItemGroup>

</Project>
+1 −1
Original line number Diff line number Diff line
using Cals.Authentication;
using Cals.Visor.Domain.Identity;
using Cals.Visor.Models.Identity;
using Cals.Cqrs;
using MediatR;
using Microsoft.Extensions.Logging;
+1 −1
Original line number Diff line number Diff line
using Cals.Visor.Domain.Identity;
using Cals.Visor.Models.Identity;

namespace Cals.Visor.Application.Identity;

+1 −1
Original line number Diff line number Diff line
using Cals.Cqrs;

namespace Cals.Visor.Domain.Identity;
namespace Cals.Visor.Models.Identity;

/// <summary>
/// Domain object representing a user in the system (someone logged in).
Loading