18 lines
532 B
C#
Raw Permalink Normal View History

2024-08-21 16:50:14 +08:00
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!;
}
}