| 55 | } |
| 56 | |
| 57 | public record EventPropsItem |
| 58 | { |
| 59 | public string StringKey { get; set; } = ""; |
| 60 | public string StringValue { get; set; } = ""; |
| 61 | public string NumericKey { get; set; } = ""; |
| 62 | public int Events { get; set; } |
| 63 | public decimal Median { get; set; } |
| 64 | public decimal Min { get; set; } |
| 65 | public decimal Max { get; set; } |
| 66 | public decimal Sum { get; set; } |
| 67 | } |
| 68 | |
| 69 | public record LiveGeoDataPoint |
| 70 | { |
nothing calls this directly
no outgoing calls
no test coverage detected