mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 08:28:17 +02:00
18 lines
467 B
C#
18 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; }
|
|
}
|
|
}
|