9 lines
260 B
C#
9 lines
260 B
C#
namespace OF_DL.Models.Entities.Streams;
|
|
|
|
public class StreamsCollection
|
|
{
|
|
public List<Medium> StreamMedia { get; set; } = [];
|
|
public List<ListItem> StreamObjects { get; set; } = [];
|
|
public Dictionary<long, string> Streams { get; set; } = new();
|
|
}
|