12 lines
334 B
C#
12 lines
334 B
C#
//----------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------
|
|
|
|
namespace System.Activities.Presentation
|
|
{
|
|
public interface IModalService
|
|
{
|
|
void SetModalState(bool isModal);
|
|
}
|
|
}
|