Files
Phonebook/Models/Contact.cs
2025-05-09 22:48:36 +03:00

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; }
}
}