Добавлено управление сессиями
This commit is contained in:
15
PlaylistShared.Api/Entities/TrackRemovalLog.cs
Normal file
15
PlaylistShared.Api/Entities/TrackRemovalLog.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using PlaylistShared.Api.Entities;
|
||||
|
||||
public class TrackRemovalLog
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid SharedPlaylistId { get; set; }
|
||||
public string TrackId { get; set; } = null!;
|
||||
public Guid? RemovedByUserId { get; set; }
|
||||
public DateTime RemovedAtUtc { get; set; }
|
||||
public string SessionId { get; set; } = null!;
|
||||
|
||||
public SharedPlaylist SharedPlaylist { get; set; } = null!;
|
||||
public ApplicationUser? RemovedByUser { get; set; }
|
||||
public UserSession Session { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user