mirror of
https://github.com/Linloir/Simple-TCP-Client.git
synced 2025-12-17 00:38:11 +08:00
21 lines
410 B
Dart
21 lines
410 B
Dart
/*
|
|
* @Author : Linloir
|
|
* @Date : 2022-10-11 10:55:36
|
|
* @LastEditTime : 2022-10-11 11:22:18
|
|
* @Description : Local File Model
|
|
*/
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
class LocalFile extends Equatable {
|
|
final File file;
|
|
final String filemd5;
|
|
|
|
const LocalFile({required this.file, required this.filemd5});
|
|
|
|
@override
|
|
List<Object> get props => [filemd5];
|
|
}
|