laatzen/Common/Ui/Common.UI/Models/HomeModel.cs
2024-12-03 17:03:33 +01:00

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; }
}
}