21 lines
429 B
C#
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; }
|
|
}
|