JXMovies/CMS/JXCMS.CMS.Movie/Entity/AdminEntity.cs
2020-02-09 19:10:05 +08:00

11 lines
217 B
C#
Executable File

using FreeSql;
namespace JXCMS.CMS.Movie.Entity
{
public class AdminEntity: BaseEntity<AdminEntity, int>
{
public string UserName { get; set; }
public string Password { get; set; }
}
}