15 lines
313 B
C#
15 lines
313 B
C#
namespace WorkerService1.Domains;
|
|
|
|
public class Polygon
|
|
{
|
|
public Guid PolygonId { get; set; }
|
|
public string Name { get; set; }
|
|
public string UserId { get; set; }
|
|
public Points[] Points { get; set; }
|
|
}
|
|
|
|
public struct Points
|
|
{
|
|
public double X { get; set; }
|
|
public double Y { get; set; }
|
|
} |