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:
@@ -1,6 +1,6 @@
|
||||
namespace ReC.Domain.Constants;
|
||||
|
||||
public enum ResultType
|
||||
public enum ResultType : byte
|
||||
{
|
||||
Pre = 1,
|
||||
Main,
|
||||
|
||||
Reference in New Issue
Block a user