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

22 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;
2025-11-11 19:49:52 +00:00
namespace Erp.Languages;
2025-05-06 06:45:49 +00:00
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; }
}
2025-11-11 19:49:52 +00:00