net6.0 Ready to test
This commit is contained in:
@ -2,4 +2,4 @@
|
||||
|
||||
public class BackboneComponent
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class BackboneStatusCache
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface ILoggingSetupManager
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class StatusItem
|
||||
{
|
||||
}
|
||||
}
|
@ -15,7 +15,7 @@ public class Backbone
|
||||
protected Backbone() { }
|
||||
|
||||
[NotNull]
|
||||
public static Backbone Instance { get; }
|
||||
public static Backbone? Instance { get; }
|
||||
[NotNull]
|
||||
public ILoggingSetupManager LoggingConfigurationManager { get; set; }
|
||||
public BackboneStatusCache Status { get; }
|
||||
@ -44,4 +44,4 @@ public class Backbone
|
||||
protected void CloseConnectionOfComponents(List<BackboneComponent> components) { }
|
||||
protected virtual void StopAllComponents() { }
|
||||
protected void StopComponents(List<BackboneComponent> components) { }
|
||||
}
|
||||
}
|
@ -18,4 +18,4 @@ public class EmailMessage
|
||||
public EmailMessage SetPriority(MailPriority priority) => throw new NotImplementedException();
|
||||
public EmailMessage SetSubject(string subject) => throw new NotImplementedException();
|
||||
|
||||
}
|
||||
}
|
@ -3,4 +3,4 @@
|
||||
public interface ISmtp
|
||||
{
|
||||
void Send(EmailMessage message);
|
||||
}
|
||||
}
|
@ -5,4 +5,4 @@ public enum MailPriority
|
||||
Low = 0,
|
||||
Normal = 1,
|
||||
High = 2
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user