23 lines
498 B
C#
23 lines
498 B
C#
using Soneta.Business;
|
|
using Soneta.Tools;
|
|
using Soneta.Types;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FX2_SP_WORKERS.ImportRcpCsv
|
|
{
|
|
public class ImportRCPParams : ContextBase
|
|
{
|
|
public ImportRCPParams(Context context) : base(context)
|
|
{
|
|
}
|
|
|
|
[Caption("Plik do odczytu"), Priority(2), DefaultWidth(30), Required]
|
|
public NamedStream FileName { get; set; }
|
|
|
|
}
|
|
}
|