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

14 lines
307 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 LanguageTextDto : FullAuditedEntityDto<Guid>
{
public string CultureName { get; set; }
public string ResourceName { get; set; }
public string Key { get; set; }
public string Value { get; set; }
}