using System.Collections.Generic; namespace StardewModdingAPI.Framework.Content { /// A set of operations to apply to an asset. /// The load operations to apply. /// The edit operations to apply. internal record AssetOperationGroup(List LoadOperations, List EditOperations); }