All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m31s
16 lines
356 B
C#
16 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhSProfessionalSpecialty
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public bool Active { get; set; }
|
|
|
|
public virtual ICollection<PhSProfessional> PhSProfessionals { get; set; } = new List<PhSProfessional>();
|
|
}
|