mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
11 lines
291 B
C#
11 lines
291 B
C#
namespace MikrotikAPI.Models
|
|
{
|
|
public class CreationStatus
|
|
{
|
|
public bool Success { get; set; }
|
|
public string Code { get; set; }
|
|
public string Detail { get; set; }
|
|
public string Message { get; set; }
|
|
public object Item { get; set; }
|
|
}
|
|
}
|