namespace AyCode.Interfaces.Profiles.Dtos;
public interface IAcFullName
{
string? FullName { get; }
string? FirstName { get; set; }
string? LastName { get; set; }
}