techgarage-ir.MTWireGuard/Application/Models/CreationResult.cs
2023-06-28 18:01:39 +03:30

10 lines
224 B
C#

namespace MTWireGuard.Application.Models
{
public class CreationResult
{
public string Code { get; set; }
public string Title { get; set; }
public string Description { get; set; }
}
}