18 lines
644 B
C#
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; }
|
|
}
|
|
}
|