demo4/demo4_true/Models/Eventactivity.cs

16 lines
326 B
C#
Raw Permalink Normal View History

2025-01-28 16:06:43 +00:00
using System;
using System.Collections.Generic;
namespace demo4_true.Models;
public partial class Eventactivity
{
public int Eventid { get; set; }
public int Activityid { get; set; }
public virtual Activity Activity { get; set; } = null!;
public virtual Event Event { get; set; } = null!;
}