using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Enumerations; namespace Tango.PPC.Common.Build { public interface IBuildProvider { BuildType BuildType { get; } MachineTypes MachineType { get; } bool IsEureka { get; } bool IsX1 { get; } String BuildName { get; } } }