Fixes body expression style.

This commit is contained in:
Kamron Batman 2018-09-14 08:46:14 -07:00
parent 3f0a72a62f
commit 33f5e77a24
957 changed files with 7424 additions and 15973 deletions

View file

@ -7,10 +7,10 @@ namespace Server.Items
private BookPageInfo[] m_Pages;
public string Title{ get{ return m_Title; } }
public string Author{ get{ return m_Author; } }
public string Title => m_Title;
public string Author => m_Author;
public BookPageInfo[] Pages{ get{ return m_Pages; } }
public BookPageInfo[] Pages => m_Pages;
public BookContent( string title, string author, params BookPageInfo[] pages )
{