File: ProtectedPersonalDataAttribute.cs
Web Access
Project: src\src\Identity\Extensions.Core\src\Microsoft.Extensions.Identity.Core.csproj (Microsoft.Extensions.Identity.Core)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Identity;
 
/// <summary>
/// Used to indicate that something is considered personal data and should be protected.
/// </summary>
public class ProtectedPersonalDataAttribute : PersonalDataAttribute
{ }