13 lines
280 B
C#
13 lines
280 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class LanguageSearch : BaseSearch
|
|
{
|
|
/// <summary>
|
|
/// 语言名称
|
|
/// </summary>
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|
|
}
|