- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication1.Models;
- public partial class SmeshProperty
- {
- public int? IdSmesh { get; set; }
- public int? IdProperty { get; set; }
- public virtual Property? IdPropertyNavigation { get; set; }
- public virtual Smeshariki? IdSmeshNavigation { get; set; }
- }
|