chore: deploy initial code base

This commit is contained in:
Thom Lamb
2026-05-12 10:34:30 -05:00
parent cce2961782
commit a81300a571
1829 changed files with 248331 additions and 1 deletions
@@ -0,0 +1,23 @@
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; }
}
}