Demo_Validation/Models/City.cs
2025-01-28 13:05:14 +03:00

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