demo4/demo4_true/Models/Activity.cs

14 lines
292 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 Activity
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public virtual ICollection<Client> Moderators { get; set; } = new List<Client>();
}