16 lines
426 B
C#
16 lines
426 B
C#
using SQLite;
|
|
|
|
namespace Phonebook.Models
|
|
{
|
|
public class Contact
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Email { get; set; }
|
|
public string Address { get; set; }
|
|
public string Description { get; set; }
|
|
public string PhotoPath { get; set; }
|
|
}
|
|
} |