newDemoAvaloniaVal/AvaloniaValidation/Models/City.cs

14 lines
280 B
C#
Raw Permalink Normal View History

2025-01-28 19:01:17 +00:00
using System;
using System.Collections.Generic;
namespace AvaloniaValidation.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>();
}