mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
8 lines
187 B
C#
8 lines
187 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class Notification
|
|
{
|
|
public bool IsError { get; set; } = false;
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
}
|