2025-08-25 00:06:43 -03:00
|
|
|
namespace CampusWorkshops.Api.Models;
|
|
|
|
|
|
|
|
|
|
public class Workshop
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
|
|
|
|
|
|
public string? Title { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTimeOffset StartAt { get; set; }
|
2025-09-09 20:16:58 -03:00
|
|
|
|
2025-08-25 00:06:43 -03:00
|
|
|
public DateTimeOffset EndAt { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Location { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Capacity { get; set; } = 1;
|
|
|
|
|
|
|
|
|
|
public bool IsOnline { get; set; }
|
|
|
|
|
}
|