mirror of
https://github.com/NecroticBamboo/DeepTrace.git
synced 2025-12-21 11:21:51 +00:00
9 lines
182 B
C#
9 lines
182 B
C#
using System.Text.Json.Serialization;
|
|
namespace PrometheusAPI;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum ResultTypeType
|
|
{
|
|
Matrix, Vector, Scalar, String
|
|
}
|