famedlysdk/lib/src/utils/Receipt.dart

12 lines
258 B
Dart
Raw Normal View History

2019-10-20 09:44:14 +00:00
import 'package:famedlysdk/src/utils/ChatTime.dart';
import '../User.dart';
/// Represents a receipt.
/// This [user] has read an event at the given [time].
class Receipt {
final User user;
final ChatTime time;
const Receipt(this.user, this.time);
}