Files
mixtape/zero.Core/Entities/Media/MediaFocalPoint.cs
T
2020-03-24 23:09:29 +01:00

13 lines
275 B
C#

namespace zero.Core.Entities
{
/// <summary>
/// The focal point sets the point of interest in an image with x/y coordinates from 0-1
/// </summary>
public class MediaFocalPoint
{
public decimal Left { get; set; }
public decimal Top { get; set; }
}
}