using System; using System.Collections.Generic; namespace demo4_true.Models; public partial class Jhuriactivity { public int Activityid { get; set; } public int? Jhuriid { get; set; } public virtual Activity Activity { get; set; } = null!; public virtual Client? Jhuri { get; set; } }