sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/Dtos/LanguageTextTranslatedDto.cs

16 lines
419 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Languages;
public class LanguageTextTranslatedDto : FullAuditedEntityDto<Guid>
{
public string BaseCultureName { get; set; }
public string BaseValue { get; set; }
public string TargetCultureName { get; set; }
public string TargetValue { get; set; }
public string ResourceName { get; set; }
public string Key { get; set; }
}