Skip to content

Commit 2a29775

Browse files
committed
Added CustomEnum
1 parent ac57490 commit 2a29775

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace MyTested.AspNetCore.Mvc.Test.Setups.Common
2+
{
3+
public enum CustomEnum
4+
{
5+
DefaultConstant,
6+
ConstantWithCustomValue = 128,
7+
CombinedConstant = DefaultConstant | ConstantWithCustomValue
8+
}
9+
}

0 commit comments

Comments
 (0)