demka/demofinish/Model/Agenttype.cs
2025-04-03 23:00:11 +03:00

16 lines
317 B
C#

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