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.
17 lines
490 B
17 lines
490 B
using System.ComponentModel.DataAnnotations;
|
|
using Infrastructure.Domain;
|
|
|
|
namespace Application.Domain.Entities
|
|
{
|
|
[Display(Name = "应用")]
|
|
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; }
|
|
}
|
|
} |