2024-08-21 16:50:14 +08:00

16 lines
444 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class Key
{
public string? MachineName { get; set; }
public Guid InstallationId { get; set; }
public string? InstanceName { get; set; }
public int Client { get; set; }
public byte[]? PublicKey { get; set; }
public byte[]? SymmetricKey { get; set; }
}
}