demo4/demo4_true/Models/Event.cs

28 lines
611 B
C#
Raw Normal View History

2025-01-28 16:06:43 +00:00
using System;
using System.Collections.Generic;
namespace demo4_true.Models;
public partial class Event
{
public int Id { get; set; }
public string Sobitie { get; set; } = null!;
public DateTime Date { get; set; }
public int Days { get; set; }
public int City { get; set; }
public string? Photopath { get; set; }
public int? DirectionId { get; set; }
public virtual City CityNavigation { get; set; } = null!;
public virtual Direction? Direction { get; set; }
public virtual ICollection<Client> Winners { get; set; } = new List<Client>();
}