mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
11 lines
304 B
C#
11 lines
304 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);
|
|||
|
}
|
|||
|
}
|