namespace Barotrauma.LuaCs.Data;
///
/// Serves as a compound-key to refer to all resources and information that comes from a specific source.
///
public interface IDataInfo
{
///
/// Package-Unique name to be used internally for all representations of, and references to, this information.
///
string InternalName { get; }
///
/// The package this information belongs to.
///
ContentPackage OwnerPackage { get; }
///
/// Used in place of the package data when the OwnerPackage is missing.
///
string FallbackPackageName { get; }
}