mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 03:12:21 +08:00
14 lines
281 B
C#
14 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);
|
|
}
|
|
}
|
|
}
|