using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BismNormalizer.TabularCompare.MultidimensionalMetadata { /// /// Represents a tabular object for comparison. /// public interface ITabularObject { /// /// Name of the tabular object. /// string Name { get; } /// /// Long name of the tabular object. /// string LongName { get; } /// /// Id of the tabular object. /// string Id { get; } /// /// Object definition of the tabular object. /// string ObjectDefinition { get; } /// /// Substitute Id of the tabular object. /// string SubstituteId { get; } } }