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

17 lines
281 B
C#
Raw Normal View History

2020-06-09 20:02:14 +00:00
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; }
}
}