using System; using System.Collections.Generic; using System.Text; namespace TaskRunner.DTOs { public class StreamDTO { public int StreamId { get; set; } public string MimeType { get; set; } public IList> Uris { get; set; } } }