continuity/Wonderking/Packets/Outgoing/JobData.cs
Timothy Schenk b2373d1556
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Failing after 27s
Build, Package and Push Images / sonarqube (push) Has been skipped
Build, Package and Push Images / sbom-scan (push) Has been skipped
Build, Package and Push Images / container-build (push) Has been skipped
Build, Package and Push Images / container-sbom-scan (push) Has been skipped
feat: channel selection working
2023-11-13 21:12:12 +01:00

12 lines
306 B
C#

using JetBrains.Annotations;
namespace Wonderking.Packets.Outgoing;
[UsedImplicitly]
public class JobData
{
public required byte FirstJob { get; set; }
public required byte SecondJob { get; set; }
public required byte ThirdJob { get; set; }
public required byte FourthJob { get; set; }
}