File: PersonalDataAttribute.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. using System; namespace Microsoft.AspNetCore.Identity; /// <summary> /// Used to indicate that something is considered personal data. /// </summary> [AttributeUsage(AttributeTargets.Property)] public class PersonalDataAttribute : Attribute { } |