mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 21:24:59 +00:00
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);
|
|
}
|
|
}
|
|
}
|