mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
22 lines
441 B
C#
22 lines
441 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Teknik.Configuration
|
|||
|
{
|
|||
|
public class ClamConfig
|
|||
|
{
|
|||
|
// Virus Scanning Settings
|
|||
|
public bool Enabled { get; set; }
|
|||
|
public string Server { get; set; }
|
|||
|
public int Port { get; set; }
|
|||
|
|
|||
|
public ClamConfig()
|
|||
|
{
|
|||
|
Enabled = false;
|
|||
|
Server = "localhost";
|
|||
|
Port = 3310;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|