13 lines
277 B
C#
13 lines
277 B
C#
using System;
|
|
|
|
namespace CinemaLib.API;
|
|
|
|
public class StreamAudio
|
|
{
|
|
#pragma warning disable CS8618
|
|
public string language { get; set; } // two letter ISO code
|
|
public string codec { get; set; } // ie. AAC
|
|
#pragma warning restore CS8618
|
|
public int channels { get; set; }
|
|
}
|