10 lines
194 B
C#
10 lines
194 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class SimpleMediaCollection : MediaCollection
|
|
{
|
|
public IList<MediaItem> Items { get; set; }
|
|
}
|
|
}
|