PingDto.cs 185 B

123456789
  1. using Quadarax.Foundation.Core.Data.Interface.Entity;
  2. namespace BO.AppServer.Metadata.Dto
  3. {
  4. public class PingDto : IDto
  5. {
  6. public string Status { get; set; }
  7. }
  8. }