mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
13 lines
No EOL
311 B
C#
13 lines
No EOL
311 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class Notification
|
|
{
|
|
public bool IsError { get; set; } = false;
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
|
|
public interface INotificationReceiver
|
|
{
|
|
void OnReceiveNotification(string ctx, Notification notice);
|
|
}
|
|
} |