18 lines
272 B
C#
18 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
/// <summary>
|
|
/// 更新源
|
|
/// </summary>
|
|
namespace GeekDesk.Constant
|
|
{
|
|
public enum UpdateType
|
|
{
|
|
Gitee = 1,
|
|
GitHub = 2
|
|
}
|
|
}
|