You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
589 B
C#
26 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZKLT.Hadoop.Model
|
|
{
|
|
public class HDP_TaskConfig
|
|
{
|
|
|
|
private string _Id;
|
|
private string _TaskId;
|
|
private string _Key;
|
|
private string _Value;
|
|
|
|
public string Id { get => _Id; set => _Id = value; }
|
|
|
|
public string TaskId { get => _TaskId; set => _TaskId = value; }
|
|
|
|
public string Key { get => _Key; set => _Key = value; }
|
|
|
|
public string Value { get => _Value; set => _Value = value; }
|
|
}
|
|
}
|