17 lines
212 B
C#
17 lines
212 B
C#
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
||
|
namespace InnovEnergy.FossilTui;
|
||
|
|
||
|
[SuppressMessage("ReSharper", "IdentifierTypo")]
|
||
|
|
||
|
public enum FossilAction
|
||
|
{
|
||
|
Revert,
|
||
|
Ignore,
|
||
|
Add,
|
||
|
Commit,
|
||
|
Delete
|
||
|
}
|
||
|
|
||
|
|