Browse Source

updated the summaries

pull/15169/head
malik masis 3 years ago
parent
commit
3d135913da
  1. 4
      framework/src/Volo.Abp.Auditing.Contracts/Volo/Abp/Auditing/IHasEntityVersion.cs
  2. 4
      modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj
  3. 2
      modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/OrganizationUnit.cs

4
framework/src/Volo.Abp.Auditing.Contracts/Volo/Abp/Auditing/IHasEntityVersion.cs

@ -1,12 +1,12 @@
namespace Volo.Abp.Auditing;
/// <summary>
/// An entity version property that auto-increments when the entity changes.
/// A version value that is increased whenever the entity is changed.
/// </summary>
public interface IHasEntityVersion
{
/// <summary>
/// An entity version property that auto-increments when the entity changes.
/// A version value that is increased whenever the entity is changed.
/// </summary>
int EntityVersion { get; }
}

4
modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\..\configureawait.props" />
<Import Project="..\..\..\..\common.props" />
@ -24,7 +24,7 @@
<ProjectReference Include="..\..\..\users\src\Volo.Abp.Users.Domain.Shared\Volo.Abp.Users.Domain.Shared.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Validation\Volo.Abp.Validation.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Features\Volo.Abp.Features.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Auditing\Volo.Abp.Auditing.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Auditing.Contracts\Volo.Abp.Auditing.Contracts.csproj" />
</ItemGroup>
<ItemGroup>

2
modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/OrganizationUnit.cs

@ -35,7 +35,7 @@ public class OrganizationUnit : FullAuditedAggregateRoot<Guid>, IMultiTenant, IH
public virtual string DisplayName { get; set; }
/// <summary>
/// An entity version property that auto-increments when the entity changes.
/// A version value that is increased whenever the entity is changed.
/// </summary>
public virtual int EntityVersion { get; set; }

Loading…
Cancel
Save