Files

15 lines
376 B
C#
Raw Permalink Normal View History

2026-03-18 16:37:59 -04:00
namespace SabreTools.Wrappers
{
/// <summary>
/// Represents a wrapper around a top-level model
/// </summary>
/// <typeparam name="TModel">Top-level model for the wrapper</typeparam>
public interface IWrapper<TModel> : IWrapper
{
/// <summary>
/// Get the backing model
/// </summary>
2026-01-25 16:15:05 -05:00
public TModel GetModel();
}
}