2024-01-28 18:18:54 +07:00
|
|
|
namespace Content.Server._White.Economy;
|
2023-10-02 16:50:02 +09:00
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class BankCartridgeComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public int? AccountId;
|
2023-10-23 21:23:33 +09:00
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public EntityUid? Loader;
|
|
|
|
|
|
|
|
|
|
public string AccountLinkResult = string.Empty;
|
2023-10-02 16:50:02 +09:00
|
|
|
}
|