mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-27 21:27:19 -08: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);
|
|
}
|
|
}
|
|
}
|