Browse Source
Remove `IHasEntityVersion` from `IdentitySessionEto`.
pull/18242/head
maliming
3 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
1 additions and
3 deletions
-
modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionEto.cs
|
|
|
@ -5,7 +5,7 @@ using Volo.Abp.MultiTenancy; |
|
|
|
namespace Volo.Abp.Identity; |
|
|
|
|
|
|
|
[Serializable] |
|
|
|
public class IdentitySessionEto : IMultiTenant, IHasEntityVersion |
|
|
|
public class IdentitySessionEto : IMultiTenant |
|
|
|
{ |
|
|
|
public Guid Id { get; set; } |
|
|
|
|
|
|
|
@ -26,6 +26,4 @@ public class IdentitySessionEto : IMultiTenant, IHasEntityVersion |
|
|
|
public virtual DateTime SignedIn { get; set; } |
|
|
|
|
|
|
|
public virtual DateTime? LastAccessed { get; set; } |
|
|
|
|
|
|
|
public int EntityVersion { get; set; } |
|
|
|
} |
|
|
|
|