16 lines
230 B
C#
16 lines
230 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvView;
|
|||
|
|
|
|||
|
|
public enum UserViewDetailLevel
|
|||
|
|
{
|
|||
|
|
[Description("粗略")]
|
|||
|
|
Coarse = 1,
|
|||
|
|
|
|||
|
|
[Description("中等")]
|
|||
|
|
Medium = 2,
|
|||
|
|
|
|||
|
|
[Description("精细")]
|
|||
|
|
Fine = 3
|
|||
|
|
}
|