13 lines
303 B
C#
13 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; }
|
|||
|
|
}
|