forkad från Teknikode/Teknik
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
21 rader
411 B
21 rader
411 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
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>(); |
|
} |
|
} |
|
}
|
|
|