Files
Umbraco-CMS/src/Umbraco.Core/Serialization/IStreamedResult.cs
Morten@Thinkpad-X220 51165cf614 Enabling nuget package restore and removing referenced nupkg files from repo U4-997
Implement Serialization framework from v5 U4-968
2012-10-08 09:51:13 -02:00

10 lines
186 B
C#

using System.IO;
namespace Umbraco.Core.Serialization
{
public interface IStreamedResult
{
Stream ResultStream { get; }
bool Success { get; }
}
}