Browse Source

feat: added serialization attribute

pull/532/head
cKey 4 years ago
parent
commit
38bf966995
  1. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleNameChangedWto.cs
  2. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleWto.cs
  3. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityUserWto.cs
  4. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/OrganizationUnitWto.cs

1
aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleNameChangedWto.cs

@ -2,6 +2,7 @@
namespace LINGYUN.Abp.Webhooks.Identity;
[Serializable]
public class IdentityRoleNameChangedWto
{
public Guid Id { get; set; }

1
aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleWto.cs

@ -2,6 +2,7 @@
namespace LINGYUN.Abp.Webhooks.Identity;
[Serializable]
public class IdentityRoleWto
{
public Guid Id { get; set; }

1
aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityUserWto.cs

@ -2,6 +2,7 @@
namespace LINGYUN.Abp.Webhooks.Identity;
[Serializable]
public class IdentityUserWto
{
public Guid Id { get; set; }

1
aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/OrganizationUnitWto.cs

@ -2,6 +2,7 @@
namespace LINGYUN.Abp.Webhooks.Identity;
[Serializable]
public class OrganizationUnitWto
{
public Guid Id { get; set; }

Loading…
Cancel
Save