mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
e330862ec9
* move main tabbar to a standalone control * simpfy notification
13 lines
281 B
C#
13 lines
281 B
C#
namespace SourceGit.ViewModels
|
|
{
|
|
public class Notification
|
|
{
|
|
public bool IsError { get; set; } = false;
|
|
public string Message { get; set; } = string.Empty;
|
|
|
|
public void CopyMessage()
|
|
{
|
|
App.CopyText(Message);
|
|
}
|
|
}
|
|
}
|