17 lines
281 B
C#
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; }
|
|
|
|
}
|
|
}
|