- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication1.Models;
- public partial class Property
- {
- public int Id { get; set; }
- public string? Title { get; set; }
- public virtual ICollection<Smeshariki> IdSmeshes { get; set; } = new List<Smeshariki>();
- }
|