Skip to content
Permalink
adf00cf6db
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
17 lines (16 sloc) 422 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TeamDBAwesome.Models
{
public class employee
{
public int employeeid { get; set; }
public string title { get; set; }
public string firstname { get; set; }
public string lastname { get; set; }
public string email { get; set; }
public bool isAdmin { get; set; }
}
}