using SQLite; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.MobApp.Entities.Doctor { [Table("Ratings")] public class Rating : BaseEntity { public int DoctorId { get; set; } public byte Rate { get; set; } public string? UserId { get; set; } } }