mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
10 lines
204 B
C#
10 lines
204 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
|
{
|
|
public class SamiYouTube : Sami
|
|
{
|
|
public override string Name => "SAMI YouTube";
|
|
}
|
|
}
|