14 lines
317 B
C#
14 lines
317 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|||
|
|
|
|||
|
|
namespace Kurs.Languages.Entities;
|
|||
|
|
|
|||
|
|
public class LanguageText : FullAuditedEntity<Guid>
|
|||
|
|
{
|
|||
|
|
public string CultureName { get; set; }
|
|||
|
|
public string? Key { get; set; }
|
|||
|
|
public string Value { get; set; }
|
|||
|
|
public string? ResourceName { get; set; }
|
|||
|
|
|
|||
|
|
}
|