using System; namespace Kavita.API.Attributes; /// /// Attribute to skip device tracking on specific endpoints. /// Use for high-frequency endpoints where device tracking adds unnecessary overhead. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class SkipDeviceTrackingAttribute : Attribute;