13 lines
354 B
C#
13 lines
354 B
C#
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; }
|
||
}
|