Files
Boris Milašinović 1415005b82 MVC (layered variant)
2026-04-26 13:40:03 +02:00

17 lines
465 B
C#

// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
#nullable enable
using System;
using System.Collections.Generic;
namespace MVC_SimpleCRUD_Layered.Data.Models;
public partial class Event
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public DateOnly EventDate { get; set; }
public virtual ICollection<Registration> Registrations { get; set; } = new List<Registration>();
}