Files
Moonlight/Moonlight/App/Models/Plesk/Resources/Identifier.cs
2023-03-23 10:23:27 +01:00

12 lines
223 B
C#

using Newtonsoft.Json;
namespace Moonlight.App.Models.Plesk.Resources;
public class Identifier
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("guid")]
public Guid Guid { get; set; }
}