mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 09:54:12 +08:00
9 lines
238 B
Dart
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,
|
|
}
|