demko_v/Models/AgentType.cs

18 lines
380 B
C#
Raw Permalink Normal View History

2025-04-15 21:00:02 +00:00
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<Agent> Agents { get; set; } = new List<Agent>();
}