using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.ShowEasyDtos
{
public class ArgumentDTO
{
///
/// Desc:
/// Default:
/// Nullable:False
///
public string ArgumentID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ArgumentValue { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? OrderByValue { get; set; }
}
}