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.
24 lines
748 B
24 lines
748 B
3 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Volo.Abp.Validation;
|
||
|
|
||
|
namespace Sanhe.Abp.LocalizationManagement;
|
||
|
|
||
|
public class GetTextsInput : PagedAndSortedResultRequestDto
|
||
|
{
|
||
|
[Required]
|
||
|
[DynamicStringLength(typeof(LanguageConsts), nameof(LanguageConsts.MaxCultureNameLength))]
|
||
|
public string CultureName { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[DynamicStringLength(typeof(LanguageConsts), nameof(LanguageConsts.MaxCultureNameLength))]
|
||
|
public string TargetCultureName { get; set; }
|
||
|
|
||
|
[DynamicStringLength(typeof(ResourceConsts), nameof(ResourceConsts.MaxNameLength))]
|
||
|
public string ResourceName { get; set; }
|
||
|
|
||
|
public bool? OnlyNull { get; set; }
|
||
|
|
||
|
public string Filter { get; set; }
|
||
|
}
|