[CHANGE] Client handling

This commit is contained in:
max
2025-10-19 23:21:07 +02:00
parent e4596df392
commit 34e029ec79
4 changed files with 60 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
using Manager.App.Models.Library;
namespace Manager.App.Models.System;
public class YouTubeClientItem : AccountListView
{
public YouTubeClientItem(AccountListView accountListView)
{
Id = accountListView.Id;
Name = accountListView.Name;
Handle = accountListView.Handle;
HasCookies = accountListView.HasCookies;
AvatarFileId = accountListView.AvatarFileId;
}
public bool IsLoaded { get; set; }
}