Files
hcs/Hcs.Client/Client/Api/Registry/RegistryElement.cs

10 lines
201 B
C#

namespace Hcs.Client.Api.Registry
{
public class RegistryElement(string code, string guid)
{
public string Code { get; } = code;
public string GUID { get; } = guid;
}
}