All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m31s
42 lines
870 B
C#
42 lines
870 B
C#
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; }
|
|
}
|