From 462cf9c17acc3df75c1678b32e447b0905bb5a49 Mon Sep 17 00:00:00 2001 From: maliming Date: Wed, 15 Nov 2023 13:09:09 +0800 Subject: [PATCH] Delete DynamicClaimDto.cs --- .../Volo/Abp/Account/DynamicClaimDto.cs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/DynamicClaimDto.cs diff --git a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/DynamicClaimDto.cs b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/DynamicClaimDto.cs deleted file mode 100644 index ad5ac82678..0000000000 --- a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/DynamicClaimDto.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace Volo.Abp.Account; - -public class DynamicClaimDto -{ - public string Type { get; set; } - - public string Value { get; set; } - - public DynamicClaimDto(string type, string value) - { - Type = type; - Value = value; - } -}