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

13 lines
258 B
C#
Raw Normal View History

2020-02-09 19:10:05 +08:00
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; }
}
}