mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
7 lines
189 B
C#
7 lines
189 B
C#
namespace FFMpegCore.Builders.MetaData;
|
|
|
|
public interface IReadOnlyMetaData
|
|
{
|
|
IReadOnlyList<ChapterData> Chapters { get; }
|
|
IReadOnlyDictionary<string, string> Entries { get; }
|
|
}
|