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

14 lines
341 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class ExtendedDataSet
{
public Guid Id { get; set; }
public Guid? LinkId { get; set; }
public string Name { get; set; } = null!;
public Guid ItemId { get; set; }
}
}