Files
stream-cinema/StreamCinemaLib/API/StreamAudio.cs

11 lines
221 B
C#

using System;
namespace StreamCinemaLib.API;
public class StreamAudio
{
public string language { get; set; } // two letter ISO code
public string codec { get; set; } // ie. AAC
public int channels { get; set; }
}