Created AppViewModel

Created AppViewModel to handle System Tray Icon, and Tooltip.
This commit is contained in:
Mario Steele 2025-08-01 22:06:16 -05:00
parent c9c88358c3
commit 4c400c03b8

View file

@ -1,6 +1,10 @@
using Avalonia.Controls;
using CommunityToolkit.Mvvm.ComponentModel;
namespace FreeTubeSyncer.Models;
public class AppViewModel
public partial class AppViewModel : ObservableObject
{
[ObservableProperty] private WindowIcon? _appIcon;
[ObservableProperty] private string _hintTooltip = "FreeTube Syncer";
}