using System; using Volo.Abp.Application.Dtos; namespace Sozsoft.Platform.ReleaseNotes; public class ReleaseNoteDto : EntityDto { public string Version { get; set; } public DateTime ReleaseDate { get; set; } /// Sürüm notu maddeleri (entity'de satır satır saklanır). public string[] ChangeLog { get; set; } }