Files
SystemX.Web/Projects/WebClient/WebClient.Library/Model/API.cs

16 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebClient.Library.Model
{
public class API
{
public int Id { get; set; }
public string ApiName { get; set; }
public string Host { get; set; }
}
}