15 lines
415 B
C#
15 lines
415 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.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; }
|
|
}
|
|
|