demko_v/Models/AgentType.cs
2025-04-16 00:00:02 +03:00

18 lines
380 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>();
}