Changes properties to use automatic property initializers
This commit is contained in:
parent
f0a48ad431
commit
06fa31a7bf
623 changed files with 13072 additions and 19304 deletions
|
|
@ -126,20 +126,14 @@ namespace Server.Engines.Help
|
|||
|
||||
public class PredefinedResponse
|
||||
{
|
||||
private string m_Title;
|
||||
private string m_Message;
|
||||
public string Title { get; set; }
|
||||
|
||||
public string Title{ get => m_Title;
|
||||
set => m_Title = value;
|
||||
}
|
||||
public string Message{ get => m_Message;
|
||||
set => m_Message = value;
|
||||
}
|
||||
public string Message { get; set; }
|
||||
|
||||
public PredefinedResponse( string title, string message )
|
||||
{
|
||||
m_Title = title;
|
||||
m_Message = message;
|
||||
Title = title;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
private static ArrayList m_List;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue