using TIAM.Entities.Profiles; namespace TIAM.Models.Dtos.Profiles; public class ProfileDto : IProfileDto { public Guid Id { get; set; } public Guid? UserMediaId { get; set; } public Guid AddressId { get; set; } public string Name { get; set; } public string? Description { get; set; } public string? ThumbnailUrl { get; set; } }