16 lines
417 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 ModelItemPolicy
{
public Guid Id { get; set; }
public Guid CatalogItemId { get; set; }
public string ModelItemId { get; set; } = null!;
public Guid PolicyId { get; set; }
public virtual Policy Policy { get; set; } = null!;
}
}