sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/Dtos/LanguageTextTranslatedRequestDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

18 lines
408 B
C#

using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Languages;
public class LanguageTextTranslatedRequestDto : PagedAndSortedResultRequestDto
{
[Required]
public string BaseCultureName { get; set; }
[Required]
public string TargetCultureName { get; set; }
public string ResourceName { get; set; }
public string Key { get; set; }
}