mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
cc648246e7
Work on #3633
15 lines
266 B
C#
15 lines
266 B
C#
namespace Nikse.SubtitleEdit.Core
|
|
{
|
|
public class Position
|
|
{
|
|
public int Left { get; set; }
|
|
public int Top { get; set; }
|
|
|
|
public Position(int left, int top)
|
|
{
|
|
Left = left;
|
|
Top = top;
|
|
}
|
|
}
|
|
}
|