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