17 lines
394 B
C#
17 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CondoUpdate.CustomizableAddPage
|
|
{
|
|
public class InputParams
|
|
{
|
|
public string PageUrl { get; set; }
|
|
public string PageTitle { get; set; }
|
|
public string IframeSrc { get; set; }
|
|
public string[] TargetGroups { get; set; }
|
|
}
|
|
}
|