namespace SPMS.Domain.Entities; public class ServiceIp : BaseEntity { public long ServiceId { get; set; } public string IpAddress { get; set; } = string.Empty; // Navigation public Service Service { get; set; } = null!; }