13 lines
321 B
C#
13 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
|
|
{
|
|
public partial class ConfigurationInfo
|
|
{
|
|
public Guid ConfigInfoId { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public string Value { get; set; } = null!;
|
|
}
|
|
}
|