Files

23 lines
798 B
C#

namespace Strata.ContinuousImprovement.Api.Test.Integration.Info
{
public class AllOpportunityInfo
{
public Guid ConfigurationGuid { get; set; }
public string CostDriver { get; set; }
public bool HasInitiative { get; set; }
public double IdentifiedSavings { get; set; }
public string Initiative { get; set; }
public Guid InitiativeGuid { get; set; }
public bool IsHidden { get; set; }
public string Name { get; set; }
public string Note { get; set; }
public Guid OpportunityGuid { get; set; }
public long OpportunityId { get; set; }
public string OpportunityKey { get; set; }
public int OpportunityType { get; set; }
public string OpportunityTypeName { get; set; }
}
}