14 lines
451 B
C#
14 lines
451 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Manager.Data.Entities.LibraryContext.Join;
|
|
|
|
public class PlaylistMedia
|
|
{
|
|
[MaxLength(DataConstants.DbContext.DefaultDbStringSize)]
|
|
public required string PlaylistId { get; set; }
|
|
[MaxLength(DataConstants.DbContext.DefaultDbStringSize)]
|
|
public required string MediaId { get; set; }
|
|
|
|
public DateTime DateAddedUtc { get; set; }
|
|
public DateTime DateModifiedUtc { get; set; }
|
|
} |