// Copyright 2017-2018 Alexander Luzgarev
namespace MatFileHandler
{
///
/// An interface for accessing the variable contents.
///
public interface IVariable
{
///
/// Gets or sets the name of the variable.
///
string Name { get; set; }
///
/// Gets the value of the variable.
///
IArray Value { get; }
///
/// Gets a value indicating whether the variable is global.
///
bool IsGlobal { get; }
}
}