* start to add smart collections * add smart collection table; delete smart collection * overwrite smart collections * support scheduling smart collections * update changelog
10 lines
202 B
C#
10 lines
202 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class SmartCollection
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Query { get; set; }
|
|
}
|
|
}
|