mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 04:34:49 -04:00
11 lines
306 B
C#
11 lines
306 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
// NOTE: Should this be a Record? https://www.youtube.com/watch?v=9Byvwa9yF-I
|
|
public class UpdateLibraryDto
|
|
{
|
|
public string Username { get; init; }
|
|
public IEnumerable<LibraryDto> SelectedLibraries { get; init; }
|
|
}
|
|
} |