LoginOutput.cs 280 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace AI.Platform.Service.Output
  5. {
  6. public class LoginOutput
  7. {
  8. public string Token { get; set; } = string.Empty;
  9. public string Buid { get; set; } = string.Empty;
  10. }
  11. }