1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace CodeFirstExistingDatabaseSample.ReportServer.Models
- {
- public partial class SecDatum
- {
- public Guid SecDataId { get; set; }
- public Guid PolicyId { get; set; }
- public int AuthType { get; set; }
- public string XmlDescription { get; set; } = null!;
- public byte[] NtSecDescPrimary { get; set; } = null!;
- public string? NtSecDescSecondary { get; set; }
- public virtual Policy Policy { get; set; } = null!;
- }
- }
|