//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#pragma warning disable CS1591
using global::System;
using global::System.Collections.Generic;
namespace MediaBrowser.Model.MediaInfo;
public class SubtitleTrackInfo
{
public SubtitleTrackInfo()
{
TrackEvents = Array.Empty();
}
public IReadOnlyList TrackEvents { get; set; }
}