mirror of https://github.com/abpframework/abp.git
9 changed files with 22 additions and 22 deletions
@ -1,6 +1,6 @@ |
|||
using Volo.Abp.Auditing; |
|||
|
|||
namespace Volo.Abp.Domain.Entities.Events.Distributed.ExternalEntitySynchronizers.WithEntityVersion; |
|||
namespace Volo.Abp.Domain.Entities.Events.Distributed.EntitySynchronizers.WithEntityVersion; |
|||
|
|||
public class RemoteBookEto : EntityEto, IHasEntityVersion |
|||
{ |
|||
@ -1,6 +1,6 @@ |
|||
using System; |
|||
|
|||
namespace Volo.Abp.Domain.Entities.Events.Distributed.ExternalEntitySynchronizers.WithoutEntityVersion; |
|||
namespace Volo.Abp.Domain.Entities.Events.Distributed.EntitySynchronizers.WithoutEntityVersion; |
|||
|
|||
public class Author : Entity<Guid> |
|||
{ |
|||
@ -0,0 +1,6 @@ |
|||
namespace Volo.Abp.Domain.Entities.Events.Distributed.EntitySynchronizers.WithoutEntityVersion; |
|||
|
|||
public class RemoteAuthorEto : EntityEto |
|||
{ |
|||
public string Name { get; set; } |
|||
} |
|||
@ -1,6 +0,0 @@ |
|||
namespace Volo.Abp.Domain.Entities.Events.Distributed.ExternalEntitySynchronizers.WithoutEntityVersion; |
|||
|
|||
public class RemoteAuthorEto : EntityEto |
|||
{ |
|||
public string Name { get; set; } |
|||
} |
|||
Loading…
Reference in new issue