21 lines
548 B
C#
21 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Entities.Doctor
|
|
{
|
|
[Table("Specialization")]
|
|
public class Specialization
|
|
{
|
|
[Key]
|
|
public byte SpecializationId { get; set; }
|
|
public string? SpecializationName { get; set; }
|
|
public int CompanyId { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|