Smeshariki.cs 520 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication1.Models;
  4. public partial class Smeshariki
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; } = null!;
  8. public int? Gender { get; set; }
  9. public int Age { get; set; }
  10. public string Animal { get; set; } = null!;
  11. public byte[]? Image { get; set; }
  12. public virtual Gender? GenderNavigation { get; set; }
  13. public virtual ICollection<Property> IdProperties { get; set; } = new List<Property>();
  14. }