15 lines
296 B
C#
15 lines
296 B
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Kurs.Languages;
|
|||
|
|
|
|||
|
|
public class LanguageKeyDto : FullAuditedEntityDto<Guid>
|
|||
|
|
{
|
|||
|
|
[Required]
|
|||
|
|
public string Key { get; set; }
|
|||
|
|
|
|||
|
|
[Required]
|
|||
|
|
public string ResourceName { get; set; }
|
|||
|
|
}
|