* don't run pragma command on mysql * add not required pathhash * make media file path hash required * update changelog
15 lines
369 B
C#
15 lines
369 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class MediaFile
|
|
{
|
|
public int Id { get; set; }
|
|
public string Path { get; set; }
|
|
public string PathHash { get; set; }
|
|
|
|
public int MediaVersionId { get; set; }
|
|
public MediaVersion MediaVersion { get; set; }
|
|
|
|
public int? LibraryFolderId { get; set; }
|
|
public LibraryFolder LibraryFolder { get; set; }
|
|
}
|