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

15 lines
419 B
C#

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; }
}