Infrastructure/OpenAuth.Repository/Domain/WFInstanceInfo.cs

11 lines
229 B
C#
Raw Normal View History

2024-11-13 09:19:06 +08:00
namespace OpenAuth.Repository.Domain
{
public class WFInstanceInfo
{
public string schemeId { get; set; }
public string pkey { get; set; }
public string pkeyValue { get; set; }
}
}