1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication1.Models;
- public partial class Smeshariki
- {
- public int Id { get; set; }
- public string Name { get; set; } = null!;
- public int? Gender { get; set; }
- public int Age { get; set; }
- public string Animal { get; set; } = null!;
- public byte[]? Image { get; set; }
- public virtual Gender? GenderNavigation { get; set; }
- public virtual ICollection<Property> IdProperties { get; set; } = new List<Property>();
- }
|