mirror of https://github.com/abpframework/abp.git
5 changed files with 20 additions and 5 deletions
@ -1,10 +1,13 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.Domain.Entities; |
|||
|
|||
namespace Volo.Abp.TenantManagement |
|||
{ |
|||
public class TenantDto : ExtensibleEntityDto<Guid> |
|||
public class TenantDto : ExtensibleEntityDto<Guid>, IHasConcurrencyStamp |
|||
{ |
|||
public string Name { get; set; } |
|||
|
|||
public string ConcurrencyStamp { get; set; } |
|||
} |
|||
} |
|||
@ -1,7 +1,9 @@ |
|||
namespace Volo.Abp.TenantManagement |
|||
using Volo.Abp.Domain.Entities; |
|||
|
|||
namespace Volo.Abp.TenantManagement |
|||
{ |
|||
public class TenantUpdateDto : TenantCreateOrUpdateDtoBase |
|||
public class TenantUpdateDto : TenantCreateOrUpdateDtoBase, IHasConcurrencyStamp |
|||
{ |
|||
|
|||
public string ConcurrencyStamp { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue