2023-11-13 21:12:12 +01:00
|
|
|
using JetBrains.Annotations;
|
2023-11-13 18:23:29 +01:00
|
|
|
|
|
|
|
namespace Wonderking.Packets.Outgoing;
|
|
|
|
|
2023-11-13 21:12:12 +01:00
|
|
|
[UsedImplicitly]
|
|
|
|
public class JobData
|
2023-11-13 18:23:29 +01:00
|
|
|
{
|
|
|
|
public required byte FirstJob { get; set; }
|
|
|
|
public required byte SecondJob { get; set; }
|
|
|
|
public required byte ThirdJob { get; set; }
|
|
|
|
public required byte FourthJob { get; set; }
|
|
|
|
}
|