Skip to content

Commit

Permalink
Protected fields are now properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvarenga1 committed Mar 6, 2024
1 parent e3a4577 commit 8967512
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ public abstract class ResizerProvider : IPositionProvider
{
abstract public string? Class { get; }

protected Size? _originalSize = null;
protected Point? _originalPosition = null;
protected Size? _originalSize { get; set; }
protected Point? _originalPosition { get; set; }
private double? _lastClientX;
private double? _lastClientY;
protected NodeModel? _nodeModel = null;
protected NodeModel? _nodeModel { get; set; }
private double _totalMovedX = 0;
private double _totalMovedY = 0;
protected Diagram? _diagram;
protected Diagram? _diagram { get; set; }

abstract public bool ShouldChangeXPositionOnResize { get; }
abstract public bool ShouldChangeYPositionOnResize { get; }
Expand Down

0 comments on commit 8967512

Please sign in to comment.