lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

22 lines
479 B
C#

namespace Shared.Models.SISI.Base
{
public struct MenuItem
{
public MenuItem(string title, string playlist_url)
{
this.title = title;
this.playlist_url = playlist_url;
}
public string title { get; set; }
public string search_on { get; set; }
public string logo_30x30 { get; set; }
public string playlist_url { get; set; }
public List<MenuItem> submenu { get; set; }
}
}