demoVoroncov/Voroncov2103/Models/Agent.cs
2025-03-26 10:22:01 +03:00

38 lines
965 B
C#

using System;
using System.Collections.Generic;
namespace Voroncov2103.Models;
public partial class Agent
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public int AgentTypeId { get; set; }
public string? Address { get; set; }
public string Inn { get; set; } = null!;
public string? Kpp { get; set; }
public string? DirectorName { get; set; }
public string Phone { get; set; } = null!;
public string? Email { get; set; }
public string? Logo { get; set; }
public int Priority { get; set; }
public virtual ICollection<AgentPriorityHistory> AgentPriorityHistories { get; set; } = new List<AgentPriorityHistory>();
public virtual AgentType AgentType { get; set; } = null!;
public virtual ICollection<ProductSale> ProductSales { get; set; } = new List<ProductSale>();
public virtual ICollection<Shop> Shops { get; set; } = new List<Shop>();
}