20 lines
380 B
C#
20 lines
380 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo_2023.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 virtual City CityNavigation { get; set; } = null!;
|
|||
|
}
|