10 lines
280 B
C#
10 lines
280 B
C#
namespace Manager.YouTube.Models;
|
|
|
|
public class AccountMenuInfo
|
|
{
|
|
public string? AccountId { get; set; }
|
|
public string? AccountHandle { get; set; }
|
|
public string? ImageUrl { get; set; }
|
|
public int ImageWidth { get; set; }
|
|
public int ImageHeight { get; set; }
|
|
} |