using System; using System.Collections.Generic; namespace demko_v.Models; public partial class AgentType { public int Id { get; set; } public string Title { get; set; } = null!; public string? Image { get; set; } public string? ТипАгента { get; set; } public virtual ICollection Agents { get; set; } = new List(); }