Misc bunch of changes (#2815)
This commit is contained in:
parent
18792b7b56
commit
63c9bff32e
81 changed files with 4567 additions and 339 deletions
13
API/DTOs/Scrobbling/MalUserInfoDto.cs
Normal file
13
API/DTOs/Scrobbling/MalUserInfoDto.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
namespace API.DTOs.Scrobbling;
|
||||
|
||||
/// <summary>
|
||||
/// Information about a User's MAL connection
|
||||
/// </summary>
|
||||
public class MalUserInfoDto
|
||||
{
|
||||
public required string Username { get; set; }
|
||||
/// <summary>
|
||||
/// This is actually the Client Id
|
||||
/// </summary>
|
||||
public required string AccessToken { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue