[CHANGE] Client handling
This commit is contained in:
16
Manager.App/Models/System/YouTubeClientItem.cs
Normal file
16
Manager.App/Models/System/YouTubeClientItem.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user