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,21 @@
namespace WatchIt.Database.Model.ViewCount;
public class ViewCountMedia
{
#region PROPERTIES
public Guid Id { get; set; }
public required long MediaId { get; set; }
public DateOnly Date { get; set; }
public long ViewCount { get; set; }
#endregion
#region NAVIGATION
public virtual Media.Media Media { get; set; } = null!;
#endregion
}

View File

@@ -0,0 +1,21 @@
namespace WatchIt.Database.Model.ViewCount;
public class ViewCountPerson
{
#region PROPERTIES
public Guid Id { get; set; }
public required long PersonId { get; set; }
public DateOnly Date { get; set; }
public long ViewCount { get; set; }
#endregion
#region NAVIGATION
public virtual Person.Person Person { get; set; } = null!;
#endregion
}