project reorganized

This commit is contained in:
2024-04-27 22:36:16 +02:00
Unverified
parent fcca2119a5
commit 4b333878b8
233 changed files with 4916 additions and 11471 deletions

View File

@@ -0,0 +1,24 @@
using WatchIt.Database.Model.Person;
namespace WatchIt.Database.Model.Rating;
public class RatingPersonCreatorRole
{
#region PROPERTIES
public Guid Id { get; set; }
public required Guid PersonCreatorRoleId { get; set; }
public required long AccountId { get; set; }
public required short Rating { get; set; }
#endregion
#region NAVIGATION
public virtual PersonCreatorRole PersonCreatorRole { get; set; } = null!;
public virtual Account.Account Account { get; set; } = null!;
#endregion
}