Y2S2-Syski/syski_api/uk.co.syski.api/Models/KillProcessDTO.cs
2020-06-09 21:02:14 +01:00

17 lines
281 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Syski.API.Models
{
public class KillProcessDTO
{
[JsonProperty(PropertyName = "id")]
public int Id { get; set; }
}
}