mirror of https://github.com/abpframework/abp.git
3 changed files with 10 additions and 3 deletions
@ -1,11 +1,14 @@ |
|||||
using System; |
using System; |
||||
|
using Volo.Abp.Auditing; |
||||
|
|
||||
namespace Volo.Abp.TenantManagement; |
namespace Volo.Abp.TenantManagement; |
||||
|
|
||||
[Serializable] |
[Serializable] |
||||
public class TenantEto |
public class TenantEto : IHasEntityVersion |
||||
{ |
{ |
||||
public Guid Id { get; set; } |
public Guid Id { get; set; } |
||||
|
|
||||
public string Name { get; set; } |
public string Name { get; set; } |
||||
|
|
||||
|
public int EntityVersion { get; set; } |
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue