mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
CreateDatabase
Nic nie działa bo wszystko jest inne XDD
This commit is contained in:
14
WebApp/Entities/Organisation.cs
Normal file
14
WebApp/Entities/Organisation.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user