JXMovies/CMS/JXCMS.CMS.Movie/Entity/PluginEntity.cs

11 lines
219 B
C#
Raw Normal View History

2020-02-09 19:10:05 +08:00
using FreeSql;
namespace JXCMS.CMS.Movie.Entity
{
public class PluginEntity: BaseEntity<PluginEntity, int>
{
public string PluginPath { get; set; }
public bool IsEnable { get; set; }
}
}