ShowStatusValueArgs.cs 349 B

12345678910111213
  1. namespace SHJX.Service.Model.EventArgs
  2. {
  3. public class ShowStatusValueArgs
  4. {
  5. public string Name { get; set; }
  6. public string CurrentContent { get; set; }
  7. public bool Enable { get; set; }
  8. public override string ToString()
  9. {
  10. return this.Name + ", " + this.CurrentContent;
  11. }
  12. }
  13. }