sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/ChangeLogs/ChangeLogDto.cs
2026-08-17 11:51:46 +03:00

13 lines
354 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.ChangeLogs;
public class ChangeLogDto : 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; }
}