Add ResultType enum to ReC.Domain.Constants

Introduced a new ResultType enum with values Pre, Main, and Post to represent different result stages. Pre is explicitly set to 1.
This commit is contained in:
2026-03-25 10:58:45 +01:00
parent bd07b4482c
commit fecd9219b4

View File

@@ -0,0 +1,8 @@
namespace ReC.Domain.Constants;
public enum ResultType
{
Pre = 1,
Main,
Post
}