namespace CMS.Plugin.PipeLineLems.Domain.Shared.MyTestEntityNames;
///
/// MyTestEntityName事件参数对象
///
[Serializable]
public class MyTestEntityNameEto
{
///
/// Initializes a new instance of the class.
///
/// The name.
public MyTestEntityNameEto(string name)
{
Name = name;
}
///
/// 名称
///
public string Name { get; }
}