2021-10-22 11:53:18 +02:00
|
|
|
|
using Content.Shared.Cargo;
|
|
|
|
|
|
using Robust.Client.AutoGenerated;
|
|
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Cargo.UI
|
|
|
|
|
|
{
|
|
|
|
|
|
[GenerateTypedNameReferences]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed partial class CargoOrderRow : PanelContainer
|
2021-10-22 11:53:18 +02:00
|
|
|
|
{
|
|
|
|
|
|
public CargoOrderData? Order { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public CargoOrderRow()
|
|
|
|
|
|
{
|
|
|
|
|
|
RobustXamlLoader.Load(this);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|