Timothy Schenk
9f3007b10e
All checks were successful
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 25s
Build, Package and Push Images / sbom-scan (push) Successful in 49s
Build, Package and Push Images / container-build (push) Successful in 2m11s
Build, Package and Push Images / sonarqube (push) Successful in 2m12s
Build, Package and Push Images / container-sbom-scan (push) Successful in 39s
12 lines
260 B
C#
12 lines
260 B
C#
namespace Wonderking.Packets;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class PacketIdAttribute : Attribute
|
|
{
|
|
public PacketIdAttribute(OperationCode code)
|
|
{
|
|
Code = code;
|
|
}
|
|
|
|
public OperationCode Code { get; }
|
|
}
|