From 38bf96699522184f73dad9603e4c96c1d1eec4a8 Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Mon, 28 Mar 2022 11:34:11 +0800 Subject: [PATCH] feat: added serialization attribute --- .../LINGYUN/Abp/Webhooks/Identity/IdentityRoleNameChangedWto.cs | 1 + .../LINGYUN/Abp/Webhooks/Identity/IdentityRoleWto.cs | 1 + .../LINGYUN/Abp/Webhooks/Identity/IdentityUserWto.cs | 1 + .../LINGYUN/Abp/Webhooks/Identity/OrganizationUnitWto.cs | 1 + 4 files changed, 4 insertions(+) diff --git a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleNameChangedWto.cs b/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleNameChangedWto.cs index 5f55b78cf..c91615749 100644 --- a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleNameChangedWto.cs +++ b/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; } diff --git a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleWto.cs b/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleWto.cs index 123a9f2dc..1271a5877 100644 --- a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityRoleWto.cs +++ b/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; } diff --git a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityUserWto.cs b/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityUserWto.cs index e5bf48665..29da00874 100644 --- a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/IdentityUserWto.cs +++ b/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; } diff --git a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/OrganizationUnitWto.cs b/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/OrganizationUnitWto.cs index fb4929b7a..3dd758890 100644 --- a/aspnet-core/modules/webhooks/LINGYUN.Abp.Webhooks.Identity/LINGYUN/Abp/Webhooks/Identity/OrganizationUnitWto.cs +++ b/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; }