WIP on profile page

This commit is contained in:
2020-12-18 22:46:34 -05:00
parent 786f79a52c
commit 47e32fd475
4 changed files with 154 additions and 1 deletions

View File

@@ -20,5 +20,7 @@ namespace JobsJobsJobs.Shared
/// <returns>The continent ID</returns>
/// <exception cref="System.FormatException">If the string is not a valid continent ID</exception>
public static ContinentId Parse(string id) => new ContinentId(ShortId.Parse(id));
public override string ToString() => Id.ToString();
}
}