continuity/Wonderking/Packets/Outgoing/Data/JobData.cs
Timothy Schenk 73c137d561
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Failing after 22s
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
chore: adjust namespaces
2023-11-14 21:11:25 +01:00

12 lines
311 B
C#

using JetBrains.Annotations;
namespace Wonderking.Packets.Outgoing.Data;
[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; }
}