diff -r 8badd89fb78c -r 426cc984fd18 Interface/Interface.cs --- a/Interface/Interface.cs Wed May 06 22:07:32 2015 +0200 +++ b/Interface/Interface.cs Tue May 26 12:23:55 2015 +0200 @@ -18,6 +18,7 @@ { /// /// For client to specify a specific layout. + /// A table layout is sent from client to server and defines data fields layout on our display. /// [DataContract] public class TableLayout @@ -26,9 +27,13 @@ { Columns = new List(); Rows = new List(); - Cells = new List(); } + /// + /// Construct our table layout. + /// + /// Number of column in our table. + /// Number of rows in our table. public TableLayout(int aColumnCount, int aRowCount) { Columns = new List(); @@ -46,9 +51,6 @@ } [DataMember] - public List Cells { get; set; } - - [DataMember] public List Columns { get; set; } [DataMember] @@ -56,7 +58,8 @@ } /// - /// + /// Define a data field on our display. + /// Data field can be either text or bitmap. /// [DataContract] public class DataField