You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
602 B

using Infrastructure.Domain;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
[Display(Name = "应用")]
[Scope]
[AdminModule]
public class Site : BaseEntity
{
public string Name { get; set; }
public string Icon { get; set; }
public string Description { get; set; }
public string Key { get; set; }
public string Home { get; set; }
public string Login { get; set; }
public string Logout { get; set; }
public bool Disabled { get; set; }
public int Order { get; set; }
}
}