phronCare/Models/Models/PhSProfessional.cs

42 lines
870 B
C#
Raw Normal View History

2025-04-24 20:03:42 -03:00
using System;
using System.Collections.Generic;
namespace Models.Models;
public partial class PhSProfessional
{
public int Id { get; set; }
public string Fullname { get; set; } = null!;
public string? Address { get; set; }
public string? City { get; set; }
public string? Province { get; set; }
public string? Postalcode { get; set; }
public string? Phone1 { get; set; }
public string? Phone2 { get; set; }
public string? License { get; set; }
public string? Email { get; set; }
public string? DocumenttypeName { get; set; }
public string? DocumentNumber { get; set; }
public string? Type { get; set; }
public int? SpecialtyId { get; set; }
public bool Active { get; set; }
public DateTime Createdat { get; set; }
public virtual PhSProfessionalSpecialty? Specialty { get; set; }
}