* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
10 lines
321 B
C#
10 lines
321 B
C#
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; }
|
|
} |