2022-02-16 03:15:41 +01:00
|
|
|
|
using System;
|
2022-03-02 22:13:28 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2022-02-16 03:15:41 +01:00
|
|
|
|
using VDownload.Core.Enums;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Core.Interfaces
|
|
|
|
|
|
{
|
2022-03-02 22:13:28 +01:00
|
|
|
|
public interface IBaseStream
|
2022-02-16 03:15:41 +01:00
|
|
|
|
{
|
2022-02-19 01:38:37 +01:00
|
|
|
|
#region PROPERTIES
|
2022-02-16 03:15:41 +01:00
|
|
|
|
|
|
|
|
|
|
Uri Url { get; }
|
|
|
|
|
|
bool IsChunked { get; }
|
|
|
|
|
|
StreamType StreamType { get; }
|
|
|
|
|
|
int Height { get; }
|
|
|
|
|
|
int FrameRate { get; }
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|