Side Nav Redesign (#2310)
This commit is contained in:
parent
5c2ebb87cc
commit
00dddaefae
88 changed files with 5971 additions and 572 deletions
11
API/DTOs/SideNav/ExternalSourceDto.cs
Normal file
11
API/DTOs/SideNav/ExternalSourceDto.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue