Implemented ability to mark a series as Read/Unread.

This commit is contained in:
Joseph Milazzo 2021-02-16 12:48:04 -06:00
parent 90318e8e78
commit 83b9394b17
6 changed files with 100 additions and 11 deletions

7
API/DTOs/MarkReadDto.cs Normal file
View file

@ -0,0 +1,7 @@
namespace API.DTOs
{
public class MarkReadDto
{
public int SeriesId { get; set; }
}
}