15 lines
314 B
C#
15 lines
314 B
C#
using CloudBuilder.Core.Service;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudBuilder.Security.Service
|
|
{
|
|
public interface IYesNoPolicyService : IService
|
|
{
|
|
SelectOption[] FindSelectOption(bool blank);
|
|
}
|
|
}
|