Spaces:
Build error
Build error
File size: 288 Bytes
0827183 |
1 2 3 4 5 6 7 8 9 10 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
class DialogEvent:
def __init__(self, bubble: bool = False, name: str = "", value: object = None):
self.bubble = bubble
self.name = name
self.value: object = value
|