Files
plezy/lib/services/trackers/tracker_constants.dart
T
2026-04-24 08:29:49 +02:00

9 lines
289 B
Dart

/// Shared constants for non-Trakt tracker integrations (MAL, AniList, Simkl).
class TrackerConstants {
TrackerConstants._();
/// Progress percent at which an episode/movie counts as watched and is
/// pushed to each tracker.
static const double watchedThresholdPercent = 80.0;
}