9 lines
228 B
C#
Raw Normal View History

namespace MalwareMultiScan.Api.Data.Configuration
{
public class BackendConfiguration
{
public string Id { get; set; }
public string Name { get; set; }
public string Endpoint { get; set; }
}
}