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

13 lines
227 B
C#

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