using System; namespace UserManagement.Data.Dto { public class CompanyProfileDto { public Guid Id { get; set; } public string Name { get; set; } public string LogoUrl { get; set; } public string BannerUrl { get; set; } } }