14 lines
391 B
C#
14 lines
391 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class SmartCollection
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Query { get; set; }
|
|
public List<MultiCollection> MultiCollections { get; set; }
|
|
public List<MultiCollectionSmartItem> MultiCollectionSmartItems { get; set; }
|
|
}
|
|
}
|