File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public interface IGridCells {
11
11
/// <summary>
12
12
/// Células da grid.
13
13
/// </summary>
14
- Array < int > Cells { get ; set ; }
14
+ Array < int > Cells { get ; }
15
15
16
16
/// <summary>
17
17
/// Obtém o índice de uma célula.
Original file line number Diff line number Diff line change @@ -7,25 +7,25 @@ public interface IGridConfiguration {
7
7
/// <summary>
8
8
/// Número de linhas da grid.
9
9
/// </summary>
10
- int Rows { get ; set ; }
10
+ int Rows { get ; }
11
11
12
12
/// <summary>
13
13
/// Número de colunas da grid.
14
14
/// </summary>
15
- int Columns { get ; set ; }
15
+ int Columns { get ; }
16
16
17
17
/// <summary>
18
18
/// Prefixo da grid.
19
19
/// </summary>
20
- string Prefix { get ; set ; }
20
+ string Prefix { get ; }
21
21
22
22
/// <summary>
23
23
/// Offset da grid.
24
24
/// </summary>
25
- int Offset { get ; set ; }
25
+ int Offset { get ; }
26
26
27
27
/// <summary>
28
28
/// Direção da grid.
29
29
/// </summary>
30
- GridDirection Direction { get ; set ; }
30
+ GridDirection Direction { get ; }
31
31
}
You can’t perform that action at this time.
0 commit comments