18 lines
380 B
C#
18 lines
380 B
C#
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>();
|
||
}
|