repo2403/Partner.cs
2025-03-24 14:59:01 +03:00

31 lines
654 B
C#

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<Partnerproduct> Partnerproducts { get; set; } = new List<Partnerproduct>();
}