using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Runtime.Serialization;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Pcb.Domain.WebApi
|
{
|
public class ApiBomFeedBack
|
{
|
/// <summary>
|
/// ApiAccountInfo
|
/// </summary>
|
public ApiAccountInfo ApiAccountInfo { get; set; }
|
|
/// <summary>
|
/// FeedBack
|
/// </summary>
|
public BomFeedBack FeedBack { get; set; }
|
}
|
}
|