sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/Dtos/LanguageKeyDto.cs

16 lines
289 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Languages;
public class LanguageKeyDto : EntityDto<Guid>
2026-02-24 20:44:16 +00:00
{
[Required]
public string Key { get; set; }
[Required]
public string ResourceName { get; set; }
}