12 lines
201 B
C#
12 lines
201 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo_2023.Models;
|
|||
|
|
|||
|
public partial class JuryEvent
|
|||
|
{
|
|||
|
public int? JuryId { get; set; }
|
|||
|
|
|||
|
public int? EventId { get; set; }
|
|||
|
}
|