- 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; }
- }
- }
|