23 lines
457 B
C#
23 lines
457 B
C#
///
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using Common;
|
|
|
|
namespace TBF.UI.Procedures
|
|
{
|
|
public class ProviderAndIx
|
|
{
|
|
public readonly IParamsProvider Provider;
|
|
public readonly int Index;
|
|
public readonly int Row;
|
|
|
|
public ProviderAndIx(IParamsProvider provider, int index, int row)
|
|
{
|
|
Provider = provider;
|
|
Index = index;
|
|
Row = row;
|
|
}
|
|
}
|
|
}
|