mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 17:16:24 +02:00
14 lines
273 B
C#
14 lines
273 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RemSox.Processing
|
|
{
|
|
public class ProcessMetrics
|
|
{
|
|
public int AverageTickTimeMs { get; set; }
|
|
|
|
public int LastTickTimeMs { get; set; }
|
|
}
|
|
} |