Skip to content

Instantly share code, notes, and snippets.

@andreaGhisa
Created July 26, 2018 11:34
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/498c8344045073637ea9c23a396606a5 to your computer and use it in GitHub Desktop.
Save andreaGhisa/498c8344045073637ea9c23a396606a5 to your computer and use it in GitHub Desktop.
IStudioNotification implementation
public class InSourceNotification: IStudioNotification
{
public InSourceNotification(Guid id)
{
Id = id;
}
public Guid Id { get; }
public string Title { get; set; }
public IStudioNotificationCommand LinkAction { get; set; }
public bool IsExpanderVisible { get; set; }
public bool IsLinkVisible { get; set; }
public List<string> AlwaysVisibleDetails { get; set; }
public List<string> OtherDetails { get; set; }
public IStudioNotificationCommand Action { get; set; }
public bool IsActionVisible { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment