2024-08-16 17:17:37 -07:00

11 lines
168 B
C#

namespace Adaptation.Shared.Properties;
public interface IDescription
{
int Test { get; }
int Count { get; }
int Index { get; }
string Lot { get; }
}