This commit is contained in:
2018-06-28 23:37:38 +00:00
commit 4518298aaf
152 changed files with 24114 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
namespace rockfishCore.Models
{
//DTO class for license request key response form submission handling
public class dtoKeyRequestResponse
{
public string greeting { get; set; }
public string greetingReplySubject { get; set; }
public string keycode { get; set; }
public string request { get; set; }
public string requestReplyToAddress { get; set; }
public string requestFromReplySubject { get; set; }
public uint request_email_uid { get; set; }
}
}