This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/Models/RDTKViewMessageLevel.cs
2025-02-26 10:55:02 +08:00

11 lines
129 B
C#

namespace RDTKEditor.Models
{
internal enum RDTKViewMessageLevel
{
None = 0,
Info = 1,
Warning = 2,
Error = 3,
}
}