16 lines
324 B
C#
16 lines
324 B
C#
// <copyright file="TransportStreamTimestamp.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
|
{
|
|
public enum TransportStreamTimestamp
|
|
{
|
|
None,
|
|
Zero,
|
|
Valid
|
|
}
|
|
}
|