This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2025-07-20 19:26:50 +02:00
|
|
|
class_name ClientData
|
|
|
|
|
extends Resource
|
|
|
|
|
|
|
|
|
|
@export var client_id: String
|
|
|
|
|
@export var client_name: String
|
|
|
|
|
|
|
|
|
|
func _init(
|
|
|
|
|
client_id: String = "",
|
|
|
|
|
client_name: String = "",
|
|
|
|
|
) -> void:
|
|
|
|
|
self.client_id = client_id
|
|
|
|
|
self.client_name = client_name
|