19 lines
333 B
C#
19 lines
333 B
C#
namespace Adaptation.Shared.Properties;
|
|
|
|
public interface IDescription
|
|
{
|
|
|
|
int Test { get; }
|
|
int Count { get; }
|
|
int Index { get; }
|
|
|
|
string MesEntity { get; }
|
|
string Date { get; }
|
|
|
|
string Employee { get; }
|
|
string PSN { get; }
|
|
string RDS { get; }
|
|
string Reactor { get; }
|
|
string Recipe { get; }
|
|
|
|
} |