12 lines
191 B
C#
12 lines
191 B
C#
using System;
|
|
|
|
namespace APT.Infrastructure.EF
|
|
{
|
|
public class DbsetProperty
|
|
{
|
|
public Type PropertyType { get; set; }
|
|
|
|
public string PropertyName { get; set; }
|
|
}
|
|
}
|