SecDatum.cs 532 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.Models
  4. {
  5. public partial class SecDatum
  6. {
  7. public Guid SecDataId { get; set; }
  8. public Guid PolicyId { get; set; }
  9. public int AuthType { get; set; }
  10. public string XmlDescription { get; set; } = null!;
  11. public byte[] NtSecDescPrimary { get; set; } = null!;
  12. public string? NtSecDescSecondary { get; set; }
  13. public virtual Policy Policy { get; set; } = null!;
  14. }
  15. }