using Newtonsoft.Json;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Entity.ShowEasyDtos{ public class CategoryDTO { /// <summary> /// /// </summary> public string CategoryID { get; set; } /// <summary> /// /// </summary> public string CategoryName { get; set; } }}
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.ShowEasyDtos
{
public class CategoryDTO
/// <summary>
///
/// </summary>
public string CategoryID { get; set; }
public string CategoryName { get; set; }
}