techgarage-ir.MTWireGuard/Application/Models/CreationResult.cs

11 lines
224 B
C#
Raw Normal View History

2023-06-02 15:26:29 +03:30
namespace MTWireGuard.Application.Models
{
public class CreationResult
{
public string Code { get; set; }
public string Title { get; set; }
public string Description { get; set; }
}
}