10 lines
145 B
C#
10 lines
145 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Adaptation.Shared.Properties;
|
|
|
|
public interface IProcessData
|
|
{
|
|
|
|
List<object> Details { get; }
|
|
|
|
} |