mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
11 lines
346 B
C#
11 lines
346 B
C#
using System;
|
|
|
|
namespace Kavita.API.Attributes;
|
|
|
|
/// <summary>
|
|
/// Attribute to skip device tracking on specific endpoints.
|
|
/// Use for high-frequency endpoints where device tracking adds unnecessary overhead.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
|
|
public class SkipDeviceTrackingAttribute : Attribute;
|