SystemModel.cs 258 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Bowin.Common.ServiceToken.ApiIdentity.Model
  5. {
  6. public class SystemModel
  7. {
  8. public string SystemID { get; set; }
  9. public string Secret { get; set; }
  10. }
  11. }