Demo_Validation/Models/City.cs

14 lines
285 B
C#
Raw Permalink Normal View History

2025-01-28 10:05:14 +00:00
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>();
}