using System; using System.Collections.Generic; using System.Security.Cryptography; using System.Text; namespace CoviDok.Data.Model { public class User { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public DateTime BirthDate { get; set; } public DateTime RegistrationDate { get; set; } public string ImageId { get; set; } } }