mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-06 23:24:15 -04:00
10 lines
228 B
C#
10 lines
228 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.SideNav;
|
|
|
|
public sealed record BulkUpdateSideNavStreamVisibilityDto
|
|
{
|
|
public required IList<int> Ids { get; set; }
|
|
public required bool Visibility { get; set; }
|
|
}
|