mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
22 lines
357 B
C#
22 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RedisMongoMigration
|
|
{
|
|
public enum TypeOfSource
|
|
{
|
|
PublicRelease,
|
|
InternalLeak,
|
|
UpdateGDR,
|
|
UpdateLDR,
|
|
AppPackage,
|
|
BuildTools,
|
|
Documentation,
|
|
Logging,
|
|
PrivateLeak
|
|
}
|
|
}
|