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