// Magica Cloth. // Copyright (c) MagicaSoft, 2020-2022. // https://magicasoft.jp namespace MagicaCloth { /// /// データ検証インターフェース /// public interface IDataVerify { /// /// データバージョンを取得する /// /// int GetVersion(); /// /// データを検証して結果を格納する /// /// void CreateVerifyData(); /// /// 現在のデータが正常(実行できる状態)か返す /// /// Define.Error VerifyData(); /// /// データ検証の結果テキストを取得する /// /// string GetInformation(); } }