9 lines
148 B
C#
9 lines
148 B
C#
namespace Aiwaz.Contracts
|
|
{
|
|
public interface IUpdatable
|
|
{
|
|
void Update(bool argForceUpdate);
|
|
bool WantsUpdate { get; }
|
|
};
|
|
}
|