mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 21:54:47 -04:00
12 lines
268 B
C#
12 lines
268 B
C#
using System;
|
|
|
|
namespace API.DTOs.SideNav;
|
|
|
|
public class ExternalSourceDto
|
|
{
|
|
public required int Id { get; set; } = 0;
|
|
public required string Name { get; set; }
|
|
public required string Host { get; set; }
|
|
public required string ApiKey { get; set; }
|
|
}
|