mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 09:48:21 +00:00
package
This commit is contained in:
18
lib/src/Net/IIP/DistributedPropertyContext.dart
Normal file
18
lib/src/Net/IIP/DistributedPropertyContext.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'DistributedConnection.dart';
|
||||
class DistributedPropertyContext
|
||||
{
|
||||
dynamic value;
|
||||
DistributedConnection connection;
|
||||
dynamic Function(DistributedConnection) method;
|
||||
|
||||
|
||||
DistributedPropertyContext(this.method)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
DistributedPropertyContext.setter(this.value, this.connection)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user