feat: initial commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user