feat: initial commit

This commit is contained in:
Thom Lamb
2026-06-23 11:26:55 -05:00
parent d472a6cff8
commit 1e042cc5e8
722 changed files with 278037 additions and 1 deletions
@@ -0,0 +1,17 @@
namespace Strata.Stratasphere.Biz.Administration.Clients
{
public class ClientMappingSummary
{
public string Mapping { get; set; }
public int StrataId { get; set; }
public int WithoutRollup { get; set; }
public int WithRollup { get; set; }
public double RollupPct => 1d * WithRollup / TotalRollup;
public int NotReviewed { get; set; }
public int IsReviewed { get; set; }
public double ReviewedPct => 1d * IsReviewed / TotalRollup;
public int TotalRollup { get; set; }
public int Duplicates { get; set; }
public int Waiting { get; set; }
}
}