sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/ChangeLogs/ChangeLogDto.cs

14 lines
354 B
C#
Raw Normal View History

2026-08-12 21:26:36 +00:00
using System;
using Volo.Abp.Application.Dtos;
2026-08-17 08:51:46 +00:00
namespace Sozsoft.Platform.ChangeLogs;
2026-08-12 21:26:36 +00:00
2026-08-17 08:51:46 +00:00
public class ChangeLogDto : EntityDto<Guid>
2026-08-12 21:26:36 +00:00
{
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; }
}