using System; using System.Collections.Generic; using System.Text; namespace AI.Platform.Service.Output { public class LoginOutput { public string Token { get; set; } = string.Empty; public string Buid { get; set; } = string.Empty; } }