We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b458f commit cd81254Copy full SHA for cd81254
src/AspnetRun.Application/AspnetRun.Application.csproj
@@ -12,8 +12,4 @@
12
<ProjectReference Include="..\AspnetRun.Core\AspnetRun.Core.csproj" />
13
</ItemGroup>
14
15
- <ItemGroup>
16
- <Folder Include="Session\" />
17
- </ItemGroup>
18
-
19
</Project>
src/AspnetRun.Application/Session/ISessionService.cs
@@ -0,0 +1,11 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Text;
4
+
5
+namespace AspnetRun.Application.Session
6
+{
7
+ public interface ISessionService
8
+ {
9
+ string UserId { get; set; }
10
+ }
11
+}
0 commit comments