19 lines
569 B
C#
19 lines
569 B
C#
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; }
|
|
|
|
}
|
|
}
|