2024-08-21 16:50:14 +08:00

16 lines
407 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
{
public partial class TempDataSet
{
public Guid Id { get; set; }
public Guid ItemId { get; set; }
public Guid? LinkId { get; set; }
public string Name { get; set; } = null!;
public virtual TempCatalog Item { get; set; } = null!;
}
}