WantedListUiState.cs 351 B

1234567891011
  1. using Content.Shared.CriminalRecords;
  2. using Content.Shared.CriminalRecords.Systems;
  3. using Robust.Shared.Serialization;
  4. namespace Content.Shared.CartridgeLoader.Cartridges;
  5. [Serializable, NetSerializable]
  6. public sealed class WantedListUiState(List<WantedRecord> records) : BoundUserInterfaceState
  7. {
  8. public List<WantedRecord> Records = records;
  9. }