mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
13 lines
256 B
C#
13 lines
256 B
C#
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ProxmoxSharp.Models
|
|
{
|
|
public class ProxmoxKsmInfo
|
|
{
|
|
[JsonProperty("shared")]
|
|
public long Shared { get; set; }
|
|
}
|
|
}
|