mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-17 09:26:50 +08:00
Fix code style issues
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
public class NotificationTestResult
|
||||
{
|
||||
public bool IsSuccess { get; set; }
|
||||
public string Message { get; set; } = "";
|
||||
public string Message { get; set; } = string.Empty;
|
||||
|
||||
public static NotificationTestResult Success()
|
||||
{
|
||||
|
||||
@@ -19,5 +19,5 @@ public partial class NotificationConfig : ObservableObject
|
||||
///
|
||||
/// </summary>
|
||||
[ObservableProperty]
|
||||
private string _webhookEndpoint = "";
|
||||
private string _webhookEndpoint = string.Empty;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
namespace BetterGenshinImpact.Service.Notifier.Exception;
|
||||
|
||||
public class NotifierException(string message) : System.Exception(message)
|
||||
{
|
||||
}
|
||||
public class NotifierException(string message) : System.Exception(message);
|
||||
Reference in New Issue
Block a user