22 lines
503 B
C#
22 lines
503 B
C#
namespace Studio.UI.Popup
|
|
{
|
|
public interface IUIPopupContent
|
|
{
|
|
/// <summary>
|
|
/// 확인 처리 할 수 있는 상태 인지 여부
|
|
/// </summary>
|
|
bool IsOkable { get; }
|
|
|
|
/// <summary>
|
|
/// 취소 처리 할 수 있는 상태 인지 여부
|
|
/// </summary>
|
|
bool IsCancelable { get; }
|
|
|
|
/// <summary>
|
|
/// return 할 결과 값
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
object GetResult();
|
|
}
|
|
}
|