This repository has been archived on 2023-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
Sic02/FrameworkLocal/UIClient/Caliburn.Micro/IHaveParameters.cs

16 lines
388 B
C#
Raw Permalink Normal View History

2022-08-05 14:47:02 +08:00
#if XFORMS
namespace Caliburn.Micro.Core.Xamarin.Forms
#else
namespace Caliburn.Micro
#endif
{
/// <summary>
/// Indicates that a message is parameterized.
/// </summary>
public interface IHaveParameters {
/// <summary>
/// Represents the parameters of a message.
/// </summary>
AttachedCollection<Parameter> Parameters { get; }
}
}