Specify byte as underlying type for ResultType enum

Changed ResultType enum declaration to explicitly use byte as its underlying type for improved memory efficiency and clarity.
This commit is contained in:
2026-03-30 13:20:40 +02:00
parent fde9735b27
commit de2185bf0a

View File

@@ -1,6 +1,6 @@
namespace ReC.Domain.Constants;
public enum ResultType
public enum ResultType : byte
{
Pre = 1,
Main,