Y2S2-Syski/syski_api/uk.co.syski.api/Models/SystemPingDTO.cs

15 lines
218 B
C#
Raw Permalink Normal View History

2020-06-09 20:02:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Syski.API.Models
{
public class SystemPingDTO
{
public double ping { get; set; }
}
}