Browse Source

Delete DynamicClaimDto.cs

pull/18064/head
maliming 2 years ago
parent
commit
462cf9c17a
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 14
      modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/DynamicClaimDto.cs

14
modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/DynamicClaimDto.cs

@ -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;
}
}
Loading…
Cancel
Save