mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
18 lines
329 B
C#
18 lines
329 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Teknik.Configuration
|
|
{
|
|
public class StreamConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public List<string> Sources { get; set; }
|
|
|
|
public StreamConfig()
|
|
{
|
|
Enabled = true;
|
|
Sources = new List<string>();
|
|
}
|
|
}
|
|
}
|