erp-platform/api/src/Kurs.Platform.Application.Contracts/Intranet/EventDto.cs
2025-10-29 13:20:21 +03:00

21 lines
681 B
C#

using System;
using System.Collections.Generic;
namespace Kurs.Platform.Intranet;
public class EventDto
{
public string Id { get; set; }
public string CategoryName { get; set; }
public string TypeName { get; set; }
public DateTime Date { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Place { get; set; }
public EventOrganizerDto Organizer { get; set; }
public int Participants { get; set; }
public List<string> Photos { get; set; } = new();
public List<EventCommentDto> Comments { get; set; } = new();
public int Likes { get; set; }
public bool IsPublished { get; set; }
}