2026-02-24 20:44:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Languages;
|
|
|
|
|
|
|
2026-05-02 18:43:32 +00:00
|
|
|
|
public class LanguageDto : EntityDto<Guid>
|
2026-02-24 20:44:16 +00:00
|
|
|
|
{
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public string CultureName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public string UiCultureName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public bool IsEnabled { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|