AyCode.Core/AyCode.Interfaces/Profiles/Dtos/IAcFullName.cs

8 lines
180 B
C#

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