aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ItemValue.cs
blob: a3c0908bbe1718f7019b75929c9e0e35c4eaff39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace Jellyfin.Data.Entities;

public class ItemValue
{
    public Guid ItemId { get; set; }
    public required BaseItem Item { get; set; }

    public required int Type { get; set; }
    public required string Value { get; set; }
    public required string CleanValue { get; set; }
}