Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Localization;
///
/// Represents a locale resource model
///
public partial record LocaleResourceModel : BaseNopEntityModel
{
#region Properties
[NopResourceDisplayName("Admin.Configuration.Languages.Resources.Fields.Name")]
public string ResourceName { get; set; }
[NopResourceDisplayName("Admin.Configuration.Languages.Resources.Fields.Value")]
public string ResourceValue { get; set; }
public int LanguageId { get; set; }
#endregion
}