IdentityShroud/IdentityShroud.Core/Model/Client.cs

7 lines
131 B
C#
Raw Normal View History

2026-02-06 19:58:01 +01:00
namespace IdentityShroud.Core.Model;
public class Client
{
public Guid Id { get; set; }
public string Name { get; set; }
}