SCHEDULED DOWNTIME: GitLab's virtual host must be rebooted to apply security updates. The reboot will occur on Wednesday, 2025-03-19, between 01:00 and 1:30 AM.
namespace SocialNetwork.Social.Domain.ValueObjects; public class SocialProfile { public Guid Id { get; set; } public required string Name { get; set; } public required string Email { get; set; } }