// Copyright Epic Games, Inc. All Rights Reserved. using System.Threading.Tasks; using EpicGames.Core; namespace EpicGames.Horde.Jobs.Templates { /// /// Interface for a collection of template documents /// public interface ITemplateCollection { /// /// Gets a template by ID /// /// Unique id of the template /// The template document Task GetAsync(ContentHash templateId); } }