Key.cs 444 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.Models
  4. {
  5. public partial class Key
  6. {
  7. public string? MachineName { get; set; }
  8. public Guid InstallationId { get; set; }
  9. public string? InstanceName { get; set; }
  10. public int Client { get; set; }
  11. public byte[]? PublicKey { get; set; }
  12. public byte[]? SymmetricKey { get; set; }
  13. }
  14. }