mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
19 lines
537 B
C#
19 lines
537 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class VehicleImageMap
|
|
{
|
|
public string ImageLink { get; set; }
|
|
public int Height { get; set; }
|
|
public int Width { get; set; }
|
|
public List<ImageMap> Map { get; set; } = new List<ImageMap>();
|
|
}
|
|
public class ImageMap
|
|
{
|
|
public string Tags { get; set; }
|
|
public string Coordinates { get; set; }
|
|
public string Color { get; set; }
|
|
public decimal Opacity { get; set; }
|
|
public string Shape { get; set; }
|
|
}
|
|
}
|