using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OF_DL.Entities.Streams { public class StreamsCollection { public Dictionary Streams = new Dictionary(); public List StreamObjects = new List(); public List StreamMedia = new List(); } }