mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 19:52:48 +01:00
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|