13 lines
184 B
C#
13 lines
184 B
C#
|
|
namespace LFlow.VersionManagement.Enums;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新通道
|
|||
|
|
/// </summary>
|
|||
|
|
public enum VersionChannel
|
|||
|
|
{
|
|||
|
|
// 正式
|
|||
|
|
Official = 1,
|
|||
|
|
// 预览
|
|||
|
|
Preview = 2
|
|||
|
|
}
|