sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/ReleaseNotes/ReleaseNoteDto.cs

14 lines
358 B
C#
Raw Normal View History

2026-08-12 21:26:36 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.ReleaseNotes;
public class ReleaseNoteDto : EntityDto<Guid>
{
public string Version { get; set; }
public DateTime ReleaseDate { get; set; }
/// <summary>Sürüm notu maddeleri (entity'de satır satır saklanır).</summary>
public string[] ChangeLog { get; set; }
}