techgarage-ir.MTWireGuard/Models/CreationStatus.cs

19 lines
467 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
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; }
}
}