mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
15 lines
433 B
C#
15 lines
433 B
C#
namespace WebApp.Entities
|
|
{
|
|
public class Organisation
|
|
{
|
|
public int OrganisationId { get; set; }
|
|
public required int UserId { get; set; }
|
|
public required string Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Website { get; set; }
|
|
|
|
public User? User { get; set; }
|
|
public ICollection<Event> Events { get; set; } = new List<Event>();
|
|
}
|
|
}
|