demka/demofinish/Models/Agenttype.cs
2025-03-25 21:36:42 +03:00

16 lines
318 B
C#

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<Agent> Agents { get; set; } = new List<Agent>();
}