18 lines
384 B
C#
Raw Normal View History

namespace MalwareMultiScan.Api.Data.Configuration
{
2020-10-29 16:09:56 +02:00
/// <summary>
/// Scan backend.
/// </summary>
public class ScanBackend
{
2020-10-29 16:09:56 +02:00
/// <summary>
/// Backend id.
/// </summary>
public string Id { get; set; }
2020-10-29 16:09:56 +02:00
/// <summary>
/// Backend state.
/// </summary>
public bool Enabled { get; set; }
}
}