14 lines
282 B
C#
14 lines
282 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo4_true.Models;
|
|||
|
|
|||
|
public partial class City
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Name { get; set; } = null!;
|
|||
|
|
|||
|
public virtual ICollection<Event> Events { get; set; } = new List<Event>();
|
|||
|
}
|