mirror of
https://github.com/esiur/esiur-dart.git
synced 2025-05-06 12:02:57 +00:00
19 lines
323 B
Dart
19 lines
323 B
Dart
import 'DistributedConnection.dart';
|
|
class DistributedPropertyContext
|
|
{
|
|
dynamic value;
|
|
DistributedConnection connection;
|
|
dynamic Function(DistributedConnection) method;
|
|
|
|
|
|
DistributedPropertyContext(this.method)
|
|
{
|
|
|
|
}
|
|
|
|
DistributedPropertyContext.setter(this.value, this.connection)
|
|
{
|
|
|
|
}
|
|
}
|