Skip to content
Permalink
eb9ffc6ce5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (17 sloc) 459 Bytes
using System;
using System.Collections.Generic;
using System.Text;
using SQLite;
namespace UEngage.Models
{
public class Report_
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Username { get; set; }
public string ImageUrl { get; set; }
public string Coordinate { get; set; }
public string Description { get; set; }
public DateTime Date { get; set; }
}
}