2025-07-08 14:01:10 +08:00

18 lines
532 B
C#

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