Agents/Models/Agenttype.cs

16 lines
314 B
C#
Raw Permalink Normal View History

2025-03-24 09:34:12 +00:00
using System;
using System.Collections.Generic;
namespace Agents.Models;
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>();
}