sourcegit/src/SourceGit/Models/Notification.cs
2024-03-20 02:38:28 -05:00

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);
}
}