sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/Dtos/LanguageKeyDto.cs
2026-05-02 21:43:32 +03:00

15 lines
289 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Languages;
public class LanguageKeyDto : EntityDto<Guid>
{
[Required]
public string Key { get; set; }
[Required]
public string ResourceName { get; set; }
}