Skip to content

Instantly share code, notes, and snippets.

@andreaGhisa
Created July 26, 2018 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreaGhisa/776dc9ff6bf38e761d4d3faab5b3a3a3 to your computer and use it in GitHub Desktop.
Save andreaGhisa/776dc9ff6bf38e761d4d3faab5b3a3a3 to your computer and use it in GitHub Desktop.
IStudioGroupNotification
public class InSourceNotificationGroup:IStudioGroupNotification
{
private readonly ObservableCollection<IStudioNotification> _notifications;
public InSourceNotificationGroup(string key)
{
Key = key;
_notifications = new ObservableCollection<IStudioNotification>();
}
public string Title { get; set; }
public IStudioNotificationCommand Action { get; set; }
public bool IsActionVisible { get; set; }
public string Key { get; }
public ObservableCollection<IStudioNotification> Notifications
{
get => _notifications; set { }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment