Files
hermes/WebApp/Entities/Organisation.cs
AleksDw b4b81355c1 CreateDatabase
Nic nie działa bo wszystko jest inne XDD
2025-04-27 00:40:34 +02:00

15 lines
436 B
C#

namespace WebApp.Entities
{
public class Organisation
{
public int OrganisationId { get; set; }
public required string 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>();
}
}