mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Convert functions and properties to expression bodies when able (#7312)
Convert functions and properties to expression bodies when able
This commit is contained in:
@@ -47,10 +47,7 @@ namespace Jackett.Common.Models.DTO
|
||||
[DataMember]
|
||||
public string proxy_password { get; set; }
|
||||
|
||||
public ServerConfig()
|
||||
{
|
||||
notices = new string[0];
|
||||
}
|
||||
public ServerConfig() => notices = new string[0];
|
||||
|
||||
public ServerConfig(IEnumerable<string> notices, Models.Config.ServerConfig config, string version, bool canRunNetCore)
|
||||
{
|
||||
|
Reference in New Issue
Block a user