20 lines
442 B
C#
20 lines
442 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Doctor
|
|
{
|
|
[Table("Specialization")]
|
|
public class Specialization
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public byte SpecializationId { get; set; }
|
|
public byte SpecializationName { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|
|
|