Side Nav Redesign (#2310)
This commit is contained in:
parent
5c2ebb87cc
commit
00dddaefae
88 changed files with 5971 additions and 572 deletions
39
API/DTOs/SideNav/SideNavStreamDto.cs
Normal file
39
API/DTOs/SideNav/SideNavStreamDto.cs
Normal file
|
@ -0,0 +1,39 @@
|
|||
using API.Entities;
|
||||
using API.Entities.Enums;
|
||||
|
||||
namespace API.DTOs.SideNav;
|
||||
|
||||
public class SideNavStreamDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public required string Name { get; set; }
|
||||
/// <summary>
|
||||
/// Is System Provided
|
||||
/// </summary>
|
||||
public bool IsProvided { get; set; }
|
||||
/// <summary>
|
||||
/// Sort Order on the Dashboard
|
||||
/// </summary>
|
||||
public int Order { get; set; }
|
||||
/// <summary>
|
||||
/// If Not IsProvided, the appropriate smart filter
|
||||
/// </summary>
|
||||
/// <remarks>Encoded filter</remarks>
|
||||
public string? SmartFilterEncoded { get; set; }
|
||||
public int? SmartFilterId { get; set; }
|
||||
/// <summary>
|
||||
/// External Source Url if configured
|
||||
/// </summary>
|
||||
public int ExternalSourceId { get; set; }
|
||||
public ExternalSourceDto? ExternalSource { get; set; }
|
||||
/// <summary>
|
||||
/// For system provided
|
||||
/// </summary>
|
||||
public SideNavStreamType StreamType { get; set; }
|
||||
public bool Visible { get; set; }
|
||||
public int? LibraryId { get; set; }
|
||||
/// <summary>
|
||||
/// Only available for SideNavStreamType.Library
|
||||
/// </summary>
|
||||
public LibraryDto? Library { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue