16 lines
344 B
C#
16 lines
344 B
C#
using NodaTime;
|
|
|
|
namespace JobsJobsJobs.Shared.Api
|
|
{
|
|
/// <summary>
|
|
/// A user matching the profile search
|
|
/// </summary>
|
|
public record ProfileSearchResult(
|
|
CitizenId CitizenId,
|
|
string DisplayName,
|
|
bool SeekingEmployment,
|
|
bool RemoteWork,
|
|
bool FullTime,
|
|
Instant LastUpdated);
|
|
}
|