mirror of
https://github.com/Stone-Red-Code/Decho.git
synced 2026-09-04 00:46:11 +02:00
15 lines
246 B
C#
15 lines
246 B
C#
namespace Decho.Models;
|
|
|
|
public sealed class UserModel
|
|
{
|
|
public UserModel(string id, string displayName)
|
|
{
|
|
Id = id;
|
|
DisplayName = displayName;
|
|
}
|
|
|
|
public string Id { get; }
|
|
|
|
public string DisplayName { get; }
|
|
}
|