11 lines
260 B
C#
11 lines
260 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class OtherVideo : MediaItem
|
|
{
|
|
public List<OtherVideoMetadata> OtherVideoMetadata { get; set; }
|
|
public List<MediaVersion> MediaVersions { get; set; }
|
|
}
|
|
}
|