14 lines
342 B
C#
14 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WebsitePanel.Providers.DomainLookup
|
|
{
|
|
public class ScheduleTaskEmailTemplate
|
|
{
|
|
public string TaskId { get; set; }
|
|
public string ParameterID { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|