13 lines
258 B
C#
Executable File
13 lines
258 B
C#
Executable File
using FreeSql;
|
|
|
|
namespace JXCMS.CMS.Movie.Entity
|
|
{
|
|
public class SettingsEntity: BaseEntity<SettingsEntity, int>
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
}
|
|
} |