Merge pull request #4984 from Bond-009/subtitleedit

This commit is contained in:
Joshua M. Boniface
2021-02-22 20:59:49 -05:00
committed by GitHub
14 changed files with 219 additions and 717 deletions

View File

@@ -1,10 +1,15 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.MediaInfo
{
public class SubtitleTrackEvent
{
public SubtitleTrackEvent(string id, string text)
{
Id = id;
Text = text;
}
public string Id { get; set; }
public string Text { get; set; }

View File

@@ -1,3 +1,4 @@
#nullable enable
#pragma warning disable CS1591
using System;