ITopView.cs 238 B

1234567891011121314
  1. using Aitex.Core.UI.View.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Aitex.Core.UI.View.Frame
  7. {
  8. public interface ITopView : IBaseView
  9. {
  10. void SetTitle(string title);
  11. }
  12. }