You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Seekers/Models/IncidentReport.cs

24 lines
656 B

using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Justice.Models
{
public class IncidentReport
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string ReportName { get; set; }
public string IncidentType { get; set; }
public string Description { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }
public string Address { get; set; }
public DateTime DateTime { get; set; }
public string AttachmentPath { get; set; }
}
}