14 lines
370 B
C#
14 lines
370 B
C#
using SQLite.Net.Attributes;
|
|
|
|
namespace SQLiteRepository
|
|
{
|
|
public sealed class UserIdentity
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int Id { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public float HoursPerWeek { get; set; }
|
|
public bool IsContractor { get; set; }
|
|
}
|
|
} |