14 lines
358 B
C#
14 lines
358 B
C#
|
|
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; }
|
|||
|
|
}
|