13 lines
219 B
C#
13 lines
219 B
C#
namespace Common.UI.Models
|
|
{
|
|
using System;
|
|
|
|
public class HomeModel
|
|
{
|
|
public HomeModel()
|
|
=> this.Id = Guid.NewGuid().ToString("P").ToUpper();
|
|
|
|
public string Id { get; }
|
|
}
|
|
}
|