[ADD] New entities for library db

This commit is contained in:
max
2025-08-16 16:46:56 +02:00
parent 3c3f2db4e7
commit f9aaf4267e
9 changed files with 133 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
namespace Manager.Data.Models.LibraryContext;
public class ChannelEntity
{
public required string Id { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public DateTime JoinedDate { get; set; }
public long Subscribers { get; set; }
public long TotalVideos { get; set; }
public long TotalViews { get; set; }
public DateTime AddedDate { get; set; }
public DateTime ModifiedDate { get; set; }
}