Badgerati/NotifyMeCI

View on GitHub
NotifyMeCI.Engine/Enums/CIServerType.cs

Summary

Maintainability
A
0 mins
Test Coverage
/*
Notify Me CI is designed to be an awesome CI desktop notifier.

Copyright (c) 2016, Matthew Kelly (Badgerati)
Company: Cadaeic Studios
License: MIT (see LICENSE for details)
 */

namespace NotifyMeCI.Engine.Enums
{

    public enum CIServerType
    {
        Jenkins = 1,
        TravisCI = 2,
        AppVeyor = 3,
        TeamCity = 4
    }

}