BaseForm.cs 273 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. namespace efunbox_xyyf_windows.baseMvp
  8. {
  9. public class BaseForm<P> : Form
  10. {
  11. protected P mPresenter;
  12. }
  13. }