Files
Workshop10-API/Models/Workshop.cs
2025-09-09 20:16:58 -03:00

21 lines
429 B
C#

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; }
public DateTimeOffset EndAt { get; set; }
public string? Location { get; set; }
public int Capacity { get; set; } = 1;
public bool IsOnline { get; set; }
}