namespace Common.UI.Models { using System; public class HomeModel { public HomeModel() => this.Id = Guid.NewGuid().ToString("P").ToUpper(); public string Id { get; } } }