BuildFeed/RedisMongoMigration/Build.cs
Thomas Hounsell 2919fbea16 A fuckload of Mongo
Starting to take shape with some nice perf gains.
2015-09-09 23:48:29 +01:00

30 lines
461 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
}
public enum LevelOfFlight
{
None = 0,
Low = 1,
Medium = 2,
High = 3
}
}