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

13 lines
307 B
C#

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