Files
strataspheredatamanagement/src/Strata.Stratasphere.Biz/Administration/Clients/ClientMappingSummary.cs
T
2026-06-23 11:26:55 -05:00

18 lines
644 B
C#

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; }
}
}