using System; using System.Collections.Generic; namespace demka2025_sedelnikov; public partial class Partner { public int Id { get; set; } public string? PartnerName { get; set; } public string? DirectorName { get; set; } public string? Email { get; set; } public string? Phone { get; set; } public string? Address { get; set; } public string? Inn { get; set; } public int? Rating { get; set; } public int? PartnerTypeId { get; set; } public virtual Partnertype? PartnerType { get; set; } public virtual ICollection Partnerproducts { get; set; } = new List(); }