agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Apps/Geo.Advanced.Viewer/Logic/PhotoModel.cs

16 lines
360 B
C#
Raw Normal View History

2023-12-06 13:04:54 +00:00
using System;
using Aspose.Gis.Geometries;
namespace Geo.Advanced.Viewer.Logic
{
public class PhotoModel
{
public const string Regular = "Regular";
public const string Marked = "Marked";
public DateTime? Created { get; set; }
public IPoint? Coordinate { get; set; }
public string Mark { get; set; }
}
}