SmeshProperty.cs 340 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication1.Models;
  4. public partial class SmeshProperty
  5. {
  6. public int? IdSmesh { get; set; }
  7. public int? IdProperty { get; set; }
  8. public virtual Property? IdPropertyNavigation { get; set; }
  9. public virtual Smeshariki? IdSmeshNavigation { get; set; }
  10. }