demo4/demo4_true/Models/Event.cs
2025-01-28 19:06:43 +03:00

28 lines
611 B
C#

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>();
}