Files
TubeCards/lib/data/models/confidence.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

9 lines
238 B
Dart

/// Indicates whether the user knew the card or not.
enum Confidence {
/// Indicates that the answer for a card was known during a review.
known,
/// Indicates that the answer for a card was not known during a review.
unknown,
}