31 lines
654 B
C#
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>();
|
|
}
|