Merge branch 'refs/heads/develop' into feature/user-fonts
# Conflicts: # API/Services/TaskScheduler.cs
This commit is contained in:
commit
1f2ea8f59d
100 changed files with 3553 additions and 1416 deletions
10
API/DTOs/ReadingLists/DeleteReadingListsDto.cs
Normal file
10
API/DTOs/ReadingLists/DeleteReadingListsDto.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace API.DTOs.ReadingLists;
|
||||
|
||||
public class DeleteReadingListsDto
|
||||
{
|
||||
[Required]
|
||||
public IList<int> ReadingListIds { get; set; }
|
||||
}
|
||||
9
API/DTOs/ReadingLists/PromoteReadingListsDto.cs
Normal file
9
API/DTOs/ReadingLists/PromoteReadingListsDto.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace API.DTOs.ReadingLists;
|
||||
|
||||
public class PromoteReadingListsDto
|
||||
{
|
||||
public IList<int> ReadingListIds { get; init; }
|
||||
public bool Promoted { get; init; }
|
||||
}
|
||||
15
API/DTOs/Stats/FileExtensionExportDto.cs
Normal file
15
API/DTOs/Stats/FileExtensionExportDto.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using CsvHelper.Configuration.Attributes;
|
||||
|
||||
namespace API.DTOs.Stats;
|
||||
|
||||
/// <summary>
|
||||
/// Excel export for File Extension Report
|
||||
/// </summary>
|
||||
public class FileExtensionExportDto
|
||||
{
|
||||
[Name("Path")]
|
||||
public string FilePath { get; set; }
|
||||
|
||||
[Name("Extension")]
|
||||
public string Extension { get; set; }
|
||||
}
|
||||
|
|
@ -13,7 +13,7 @@ public class UpdateNotificationDto
|
|||
/// Semver of the release version
|
||||
/// <example>0.4.3</example>
|
||||
/// </summary>
|
||||
public required string UpdateVersion { get; init; }
|
||||
public required string UpdateVersion { get; set; }
|
||||
/// <summary>
|
||||
/// Release body in HTML
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue