28 lines
611 B
C#
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>();
|
|
}
|