13 lines
258 B
C#
13 lines
258 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|