12 lines
332 B
C#
12 lines
332 B
C#
using System.Data;
|
|
|
|
namespace Connected.Entities.Storage;
|
|
|
|
public class StorageParameter : IStorageParameter
|
|
{
|
|
public string? Name { get; init; }
|
|
public object? Value { get; set; }
|
|
public ParameterDirection Direction { get; init; } = ParameterDirection.Input;
|
|
public DbType Type { get; init; } = DbType.String;
|
|
}
|