sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/EventCommentDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

13 lines
299 B
C#

using System;
namespace Sozsoft.Platform.Intranet;
public class EventCommentDto
{
public string Id { get; set; }
public EventOrganizerDto Employee { get; set; }
public string Content { get; set; }
public DateTime CreationTime { get; set; }
public int Likes { get; set; }
}