using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class ResponseProblems
{
public ResponseProblems(int ID,string Name,string ImageUrl)
{
this.id = ID;
this.name = Name;
this.imageUrl = ImageUrl;
}
///
///
///
public int id { get; set; }
///
///
///
public string name { get; set; }
///
///
///
public string imageUrl { get; set; }
}
}