namespace SPMS.Application.DTOs.Service; public class IpListResponseDto { public string ServiceCode { get; set; } = string.Empty; public List Items { get; set; } = new(); public int TotalCount { get; set; } } public class ServiceIpDto { public long Id { get; set; } public string IpAddress { get; set; } = string.Empty; }