sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Domain/Entities/LanguageKey.cs

16 lines
322 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities;
2026-02-24 20:44:16 +00:00
namespace Sozsoft.Languages.Entities;
public class LanguageKey : Entity<Guid>
2026-02-24 20:44:16 +00:00
{
public string Key { get; set; }
public string ResourceName { get; set; }
public virtual ICollection<LanguageText> Texts { get; set; } = [];
}