erp-platform/api/modules/Kurs.Languages/Kurs.Languages.Application.Contracts/Dtos/LanguageTextDto.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

12 lines
303 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.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; }
}