16 lines
365 B
C#
16 lines
365 B
C#
namespace Modules.Library.Database.Database.Models.CommonProperties;
|
|
|
|
public class NameItem1 : Entity1
|
|
{
|
|
public string Value { get; set; } = string.Empty;
|
|
public NameType1 Type { get; set; }
|
|
public string LanguageId { get; set; } = default!;
|
|
}
|
|
|
|
public enum NameType1
|
|
{
|
|
Original,
|
|
OriginalInAnotherLanguage,
|
|
Translation,
|
|
Abbreviation,
|
|
} |