Skip to content

Commit cd81254

Browse files
committed
ISessionService
1 parent 17b458f commit cd81254

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

src/AspnetRun.Application/AspnetRun.Application.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,4 @@
1212
<ProjectReference Include="..\AspnetRun.Core\AspnetRun.Core.csproj" />
1313
</ItemGroup>
1414

15-
<ItemGroup>
16-
<Folder Include="Session\" />
17-
</ItemGroup>
18-
1915
</Project>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)