mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-10-04 15:19:43 +00:00
11 lines
No EOL
380 B
C#
11 lines
No EOL
380 B
C#
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Types;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
|
|
public class UseDigestAttribute : Attribute
|
|
{
|
|
public bool EnforceDigest { get; set; } = true;
|
|
|
|
public string DigestHeaderName { get; set; } = "X-Digest-A";
|
|
|
|
public bool ExcludeBodyFromDigest { get; set; } = false;
|
|
} |