using Infrastructure.Domain; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "Api")] public class Api : BaseEntity { public string Name { get; set; } public string Path { get; set; } public string Command { get; set; } public string Method { get; set; } public Guid ProductId { get; set; } public Product Product { get; set; } public List Parameters { get; set; } = new List(); public List Commands { get; set; } = new List(); } }