demo2023/demo_2023/Models/JuryEvent.cs

12 lines
201 B
C#
Raw Permalink Normal View History

2025-01-28 12:37:06 +00:00
using System;
using System.Collections.Generic;
namespace demo_2023.Models;
public partial class JuryEvent
{
public int? JuryId { get; set; }
public int? EventId { get; set; }
}