namespace Nuuru.Server.DTOs.Moderation { public class IpBanDto { public Guid Id { get; set; } public string IpAddress { get; set; } = string.Empty; public string? Reason { get; set; } public DateTime StartTime { get; set; } public DateTime EndTime { get; set; } public bool Active { get; set; } public bool IsActive { get; set; } public UserDto? CreatedBy { get; set; } } }