demo4/demo4_true/Models/Jhuriactivity.cs
2025-01-28 19:06:43 +03:00

16 lines
320 B
C#

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; }
}