erp-platform/api/modules/Erp.Languages/Erp.Languages.Application.Contracts/Dtos/LanguageTextTranslatedDto.cs

16 lines
415 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Languages;
2025-05-06 06:45:49 +00:00
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; }
}
2025-11-11 19:49:52 +00:00