24 lines
553 B
C#
24 lines
553 B
C#
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; }
|
|
|
|
/// <summary> multiple select icin test amacli olarak eklendi
|
|
/// </summary>
|
|
public string MultipleCultures { get; set; }
|
|
}
|