Add project files.

This commit is contained in:
Tech Garage 2023-03-03 23:24:18 +03:30
commit b2325a46ef
1351 changed files with 48136 additions and 0 deletions

18
Models/CreationStatus.cs Normal file
View file

@ -0,0 +1,18 @@
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; }
}
}