mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 16:38:19 +02:00
19 lines
467 B
C#
19 lines
467 B
C#
|
namespace MTWireGuard.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; }
|
|||
|
}
|
|||
|
|
|||
|
public class CreationResult
|
|||
|
{
|
|||
|
public string Code { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
}
|
|||
|
}
|