17 lines
474 B
C#
17 lines
474 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; }
|
|
public string PhotoBase64 { get; set; }
|
|
}
|
|
} |