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; - } -}