sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/EventCommentDto.cs

14 lines
299 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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; }
}