Skip to content

Commit

Permalink
Remove unused properties
Browse files Browse the repository at this point in the history
  • Loading branch information
rickbutterfield committed Nov 13, 2024
1 parent c8512fb commit 2d222d3
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions src/Umbraco.Community.Sustainability/Models/SustainabilityData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,55 +12,12 @@ public record Emissions
{
public double? co2 { get; set; }
public bool green { get; set; }
public Variables? variables { get; set; }
}

public record Variables
{
public string? description { get; set; }
public int? bytes { get; set; }
public GridIntensity? gridIntensity { get; set; }
public double? dataReloadRatio { get; set; }
public double? firstVisitPercentage { get; set; }
public double? returnVisitPercentage { get; set; }
}

public record GridIntensity
{
public string? description { get; set; }
public double? network { get; set; }
public double? dataCenter { get; set; }
public double? production { get; set; }
public double? device { get; set; }
}

public record Resource
{
public string? name { get; set; }
public string? entryType { get; set; }
public double? startTime { get; set; }
public double? duration { get; set; }
public string? initiatorType { get; set; }
public string? deliveryType { get; set; }
public string? nextHopProtocol { get; set; }
public string? renderBlockingStatus { get; set; }
public double? workerStart { get; set; }
public double? redirectStart { get; set; }
public double? redirectEnd { get; set; }
public double? fetchStart { get; set; }
public double? domainLookupStart { get; set; }
public double? domainLookupEnd { get; set; }
public double? connectStart { get; set; }
public double? secureConnectionStart { get; set; }
public double? connectEnd { get; set; }
public double? requestStart { get; set; }
public double? responseStart { get; set; }
public double? firstInterimResponseStart { get; set; }
public double? responseEnd { get; set; }
public int? transferSize { get; set; }
public int? encodedBodySize { get; set; }
public int? decodedBodySize { get; set; }
public int? responseStatus { get; set; }
public object[] serverTiming { get; set; }
}
}

0 comments on commit 2d222d3

Please sign in to comment.