demo2023/demo_2023/Models/JuryEvent.cs

12 lines
201 B
C#
Raw Normal View History

2025-01-22 13:34:31 +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; }
}