15 lines
299 B
Plaintext
15 lines
299 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Licensing
|
|
{
|
|
public class LicenseKey
|
|
{
|
|
public string KeyGuid { get; set; }
|
|
public string PublicKey { get; set; }
|
|
}
|
|
}
|