using System.Threading.Tasks; namespace JobsJobsJobs.Shared { /// /// The ID of a success report /// public record SuccessId(ShortId Id) { /// /// Create a new success report ID /// /// A new success report ID public static async Task Create() => new SuccessId(await ShortId.Create()); } }