Convert to Blazor (#6)
Convert existing progress to Blazor on client and server
This commit was merged in pull request #6.
This commit is contained in:
25
src/JobsJobsJobs/Shared/Domain/Profile.cs
Normal file
25
src/JobsJobsJobs/Shared/Domain/Profile.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using NodaTime;
|
||||
|
||||
namespace JobsJobsJobs.Shared
|
||||
{
|
||||
/// <summary>
|
||||
/// A job seeker profile
|
||||
/// </summary>
|
||||
public record Profile(
|
||||
CitizenId Id,
|
||||
bool SeekingEmployment,
|
||||
bool IsPublic,
|
||||
ContinentId ContinentId,
|
||||
string Region,
|
||||
bool RemoteWork,
|
||||
bool FullTime,
|
||||
MarkdownString Biography,
|
||||
Instant LastUpdatedOn,
|
||||
MarkdownString? Experience)
|
||||
{
|
||||
/// <summary>
|
||||
/// Navigation property for continent
|
||||
/// </summary>
|
||||
public Continent? Continent { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user