using Stylist.Data.Models.DTOs.Review; using Stylist.Data.Models.DTOs.WorkingHour; namespace Stylist.Data.Models.DTOs.Salon { public record SalonPageDto { public int Id { get; set; } public string? Name { get; set; } public string? Adress { get; set; } public string? AdressUrl { get; set; } public string? Description { get; set; } public string? PhoneNumber { get; set; } public string? WebsiteUrl { get; set; } public WorkingHourDto? WorkingHour { get; set; } public string? ImageUrl { get; set; } public RatingSalonPageDto? Rating { get; set; } } }