You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework.Service.../Connected.ServiceModel.Clie.../Schema/SchemaExecutionContext.cs

16 lines
429 B

using Connected.Data.Schema;
using Connected.ServiceModel.Client.Data.Remote;
namespace Connected.ServiceModel.Client.Data.Schema;
internal sealed class SchemaExecutionContext
{
public SchemaExecutionContext(ISchema schema, RemoteTableService remote)
{
Schema = schema;
Remote = remote;
}
public ExistingSchema ExistingSchema { get; set; }
public ISchema Schema { get; }
public RemoteTableService Remote { get; }
}