erp-platform/api/modules/Kurs.Languages/Kurs.Languages.Application.Contracts/Dtos/LanguageDto.cs

21 lines
418 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
namespace Kurs.Languages;
public class LanguageDto : FullAuditedEntityDto<Guid>
{
[Required]
public string CultureName { get; set; }
[Required]
public string UiCultureName { get; set; }
[Required]
public string DisplayName { get; set; }
[Required]
public bool IsEnabled { get; set; }
}