DotBased/DotBased.AspNet.Authority/Models/Options/RepositoryOptions.cs
2025-01-27 01:21:09 +01:00

10 lines
346 B
C#
Executable File

namespace DotBased.AspNet.Authority.Models.Options;
public class RepositoryOptions
{
/// <summary>
/// Use data encryption when a property has the <see cref="DotBased.AspNet.Authority.Attributes.ProtectAttribute"/> defined.
/// <value>Default: true</value>
/// </summary>
public bool UseDataProtection { get; set; } = true;
}