DotBased/DotBased.AspNet.Authority/Models/Options/RepositoryOptions.cs

10 lines
346 B
C#
Raw Normal View History

2024-12-25 22:50:04 +01:00
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;
}