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
19 lines (17 sloc) 448 Bytes
using System;
using System.Collections.Generic;
using System.Text;
using SQLite;
namespace UEngage.Models
{
public class User_
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string Postcode { get; set; }
}
}