27 lines
480 B
C#
27 lines
480 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Epost.DAL.Enum
|
|||
|
{
|
|||
|
|
|||
|
public class FlashMode
|
|||
|
{
|
|||
|
public enum Flash
|
|||
|
{
|
|||
|
[Description("0")]
|
|||
|
常亮,
|
|||
|
[Description("1")]
|
|||
|
闪烁,
|
|||
|
[Description("3")]
|
|||
|
快速闪烁,
|
|||
|
[Description("9")]
|
|||
|
急速闪烁
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|