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

26 lines
784 B

using Org.BouncyCastle.Bcpg;
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 ReporterName { 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; }
public string Status { get; set; }
public string AssignedAuthority { get; set; }
}
}