using System; using System.Collections.Generic; namespace demofinish.Models; public partial class Agenttype { public int Id { get; set; } public string Title { get; set; } = null!; public string? Image { get; set; } public virtual ICollection Agents { get; set; } = new List(); }